4 Commits

Author SHA1 Message Date
22d8ec9bcc Update src/app/page.tsx 2026-01-26 02:09:44 +00:00
7be5b32f39 Update src/app/layout.tsx 2026-01-26 02:09:43 +00:00
9aa3456ed1 Update src/app/globals.css 2026-01-26 02:09:42 +00:00
86db045aa8 Update src/app/blog/page.tsx 2026-01-26 02:09:41 +00:00
4 changed files with 19 additions and 18 deletions

View File

@@ -54,7 +54,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) {
@@ -152,4 +153,4 @@ export default function BlogPage() {
</ReactLenis> </ReactLenis>
</ThemeProvider> </ThemeProvider>
); );
} }

View File

@@ -4,21 +4,21 @@
/* Base units */ /* Base units */
/* --vw is set by ThemeProvider */ /* --vw is set by ThemeProvider */
/* --background: #f5f5f5;; /* --background: #f6f0e9;;
--card: #ffffff;; --card: #efe7dd;;
--foreground: #1c1c1c;; --foreground: #2b180a;;
--primary-cta: #6139e6;; --primary-cta: #2b180a;;
--secondary-cta: #ffffff;; --secondary-cta: #efe7dd;;
--accent: #6139e6;; --accent: #94877c;;
--background-accent: #b3a8e8;; */ --background-accent: #afa094;; */
--background: #f5f5f5;; --background: #f6f0e9;;
--card: #ffffff;; --card: #efe7dd;;
--foreground: #1c1c1c;; --foreground: #2b180a;;
--primary-cta: #6139e6;; --primary-cta: #2b180a;;
--secondary-cta: #ffffff;; --secondary-cta: #efe7dd;;
--accent: #6139e6;; --accent: #94877c;;
--background-accent: #b3a8e8;; --background-accent: #afa094;;
/* 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

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

View File

@@ -172,4 +172,4 @@ export default function LandingPage() {
</div> </div>
</ThemeProvider> </ThemeProvider>
); );
} }