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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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