4 Commits

Author SHA1 Message Date
9f37fd606d Update src/app/page.tsx 2026-02-11 05:48:55 +00:00
9a1ce6fe5b Update src/app/layout.tsx 2026-02-11 05:48:54 +00:00
b2258a2d70 Update src/app/globals.css 2026-02-11 05:48:54 +00:00
1816388439 Update src/app/blog/page.tsx 2026-02-11 05:48:54 +00:00
4 changed files with 20 additions and 19 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) {

View File

@@ -4,21 +4,21 @@
/* Base units */ /* Base units */
/* --vw is set by ThemeProvider */ /* --vw is set by ThemeProvider */
/* --background: #e3deea;; /* --background: #ffffff;;
--card: #ffffff;; --card: #f9f9f9;;
--foreground: #27231f;; --foreground: #000612e6;;
--primary-cta: #c68a62;; --primary-cta: #15479c;;
--secondary-cta: #ffffff;; --secondary-cta: #f9f9f9;;
--accent: #c68a62;; --accent: #e2e2e2;;
--background-accent: #c68a62;; */ --background-accent: #c4c4c4;; */
--background: #e3deea;; --background: #ffffff;;
--card: #ffffff;; --card: #f9f9f9;;
--foreground: #27231f;; --foreground: #000612e6;;
--primary-cta: #c68a62;; --primary-cta: #15479c;;
--secondary-cta: #ffffff;; --secondary-cta: #f9f9f9;;
--accent: #c68a62;; --accent: #e2e2e2;;
--background-accent: #c68a62;; --background-accent: #c4c4c4;;
/* 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

@@ -1,4 +1,4 @@
"use client" "use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';