9 Commits

Author SHA1 Message Date
62580fb509 Update src/app/globals.css 2026-01-28 21:09:19 +00:00
4a1d9937e0 Update src/app/blog/page.tsx 2026-01-28 21:09:17 +00:00
8aa280809f Update src/app/page.tsx 2026-01-28 21:06:11 +00:00
928e229845 Update src/app/layout.tsx 2026-01-28 21:06:10 +00:00
af7529e8b0 Update src/app/globals.css 2026-01-28 21:06:09 +00:00
81238bd64d Update src/app/destinations/page.tsx 2026-01-28 21:06:08 +00:00
b1dcefaa2e Update src/app/culture/page.tsx 2026-01-28 21:06:07 +00:00
574ed98247 Update src/app/contact/page.tsx 2026-01-28 21:06:06 +00:00
a8e96b0e29 Update src/app/blog/page.tsx 2026-01-28 21:06:06 +00:00
7 changed files with 20 additions and 19 deletions

View File

@@ -56,7 +56,8 @@ export default function BlogPage() {
const url = `${apiUrl}/posts/${projectId}?status=published`;
const response = await fetch(url, {
method: "GET", headers: {
"Content-Type": "application/json"},
"Content-Type": "application/json"
},
});
if (response.ok) {
@@ -171,4 +172,4 @@ export default function BlogPage() {
</ReactLenis>
</ThemeProvider>
);
}
}

View File

@@ -140,4 +140,4 @@ export default function ContactPage() {
/>
</ThemeProvider>
);
}
}

View File

@@ -143,4 +143,4 @@ export default function CulturePage() {
/>
</ThemeProvider>
);
}
}

View File

@@ -147,4 +147,4 @@ export default function DestinationsPage() {
/>
</ThemeProvider>
);
}
}

View File

@@ -4,21 +4,21 @@
/* Base units */
/* --vw is set by ThemeProvider */
/* --background: #fffafa;;
--card: #fff7f7;;
--foreground: #1a0000;;
--primary-cta: #e63946;;
/* --background: #fbfaff;;
--card: #f7f5ff;;
--foreground: #0f0022;;
--primary-cta: #8b5cf6;;
--secondary-cta: #ffffff;;
--accent: #f5c4c7;;
--background-accent: #f09199;; */
--accent: #d8cef5;;
--background-accent: #c4a8f9;; */
--background: #fffafa;;
--card: #fff7f7;;
--foreground: #1a0000;;
--primary-cta: #e63946;;
--background: #fbfaff;;
--card: #f7f5ff;;
--foreground: #0f0022;;
--primary-cta: #8b5cf6;;
--secondary-cta: #ffffff;;
--accent: #f5c4c7;;
--background-accent: #f09199;;
--accent: #d8cef5;;
--background-accent: #c4a8f9;;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);

View File

@@ -1267,4 +1267,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -204,4 +204,4 @@ export default function HomePage() {
/>
</ThemeProvider>
);
}
}