diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index 4753bb2..daf64a8 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) { @@ -163,4 +164,4 @@ export default function BlogPage() { ); -} \ No newline at end of file +} diff --git a/src/app/globals.css b/src/app/globals.css index 3faa714..d2b138c 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: #1c1c1c;; - --secondary-cta: #ffffff;; - --accent: #15479c;; - --background-accent: #a8cce8;; */ + /* --background: #000802;; + --card: #0b1a0b;; + --foreground: #e6ffe6;; + --primary-cta: #80da9b;; + --secondary-cta: #07170b;; + --accent: #38714a;; + --background-accent: #2c6541;; */ - --background: #f5f5f5;; - --card: #ffffff;; - --foreground: #1c1c1c;; - --primary-cta: #1c1c1c;; - --secondary-cta: #ffffff;; - --accent: #15479c;; - --background-accent: #a8cce8;; + --background: #000802;; + --card: #0b1a0b;; + --foreground: #e6ffe6;; + --primary-cta: #80da9b;; + --secondary-cta: #07170b;; + --accent: #38714a;; + --background-accent: #2c6541;; /* 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 6c4c163..b4b03bd 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 9a82c7e..6451943 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"; @@ -242,4 +242,4 @@ export default function PetShelterPage() { ); -} \ No newline at end of file +}