diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index fdcded3..0a573a0 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -54,7 +54,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) { @@ -158,4 +159,4 @@ export default function BlogPage() { ); -} \ No newline at end of file +} diff --git a/src/app/globals.css b/src/app/globals.css index 1021e0a..a6cabc9 100644 --- a/src/app/globals.css +++ b/src/app/globals.css @@ -4,21 +4,21 @@ /* Base units */ /* --vw is set by ThemeProvider */ - /* --background: #e3deea;; - --card: #ffffff;; - --foreground: #27231f;; - --primary-cta: #c68a62;; - --secondary-cta: #ffffff;; - --accent: #c68a62;; - --background-accent: #c68a62;; */ + /* --background: #ffffff;; + --card: #f9f9f9;; + --foreground: #000612e6;; + --primary-cta: #15479c;; + --secondary-cta: #f9f9f9;; + --accent: #e2e2e2;; + --background-accent: #c4c4c4;; */ - --background: #e3deea;; - --card: #ffffff;; - --foreground: #27231f;; - --primary-cta: #c68a62;; - --secondary-cta: #ffffff;; - --accent: #c68a62;; - --background-accent: #c68a62;; + --background: #ffffff;; + --card: #f9f9f9;; + --foreground: #000612e6;; + --primary-cta: #15479c;; + --secondary-cta: #f9f9f9;; + --accent: #e2e2e2;; + --background-accent: #c4c4c4;; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 976dcca..469afbc 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1264,4 +1264,4 @@ export default function RootLayout({ ); -} \ No newline at end of file +} diff --git a/src/app/page.tsx b/src/app/page.tsx index 8a7b157..268c99b 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,4 +1,4 @@ -"use client" +"use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; @@ -239,4 +239,4 @@ export default function LandingPage() { ); -} \ No newline at end of file +}