diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index 23f1494..7c7be6c 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) { @@ -125,4 +126,4 @@ export default function BlogPage() { ); -} \ No newline at end of file +} diff --git a/src/app/globals.css b/src/app/globals.css index 116f4db..08347ba 100644 --- a/src/app/globals.css +++ b/src/app/globals.css @@ -4,21 +4,21 @@ /* Base units */ /* --vw is set by ThemeProvider */ - /* --background: #f5f5f5;; - --card: #ffffff;; - --foreground: #1c1c1c;; - --primary-cta: #1f514c;; + /* --background: #fef5f0;; + --card: #fde8dd;; + --foreground: #3d2817;; + --primary-cta: #d97c63;; --secondary-cta: #ffffff;; - --accent: #159c49;; - --background-accent: #a8e8ba;; */ + --accent: #f4a574;; + --background-accent: #e8a8a0;; */ - --background: #f5f5f5;; - --card: #ffffff;; - --foreground: #1c1c1c;; - --primary-cta: #1f514c;; + --background: #fef5f0;; + --card: #fde8dd;; + --foreground: #3d2817;; + --primary-cta: #d97c63;; --secondary-cta: #ffffff;; - --accent: #159c49;; - --background-accent: #a8e8ba;; + --accent: #f4a574;; + --background-accent: #e8a8a0;; /* 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 47c3e5a..f77634a 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1257,4 +1257,4 @@ export default function RootLayout({ ); -} \ No newline at end of file +} diff --git a/src/app/page.tsx b/src/app/page.tsx index 3cb5631..cdffe59 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 NavbarStyleMinimal from '@/components/navbar/NavbarStyleMinimal'; @@ -231,4 +231,4 @@ export default function LandingPage() { ); -} \ No newline at end of file +}