6 Commits

Author SHA1 Message Date
152fc62489 Update src/app/globals.css 2026-01-23 10:11:37 +00:00
dbb61daeb6 Update src/app/globals.css 2026-01-23 10:07:58 +00:00
40f3a2f34d Update src/app/page.tsx 2026-01-23 09:42:52 +00:00
d4bb3e4f05 Update src/app/layout.tsx 2026-01-23 09:42:51 +00:00
472dd0eba5 Update src/app/globals.css 2026-01-23 09:42:50 +00:00
0f3bf369f5 Update src/app/blog/page.tsx 2026-01-23 09:42:49 +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: #f5f5f5;; /* --background: #060000;;
--card: #ffffff;; --card: #1d0d0d;;
--foreground: #1c1c1c;; --foreground: #ffe6e6;;
--primary-cta: #1c1c1c;; --primary-cta: #ff3d4a;;
--secondary-cta: #ffffff;; --secondary-cta: #1f0a0a;;
--accent: #15479c;; --accent: #7b2d2d;;
--background-accent: #a8cce8;; */ --background-accent: #b8111f;; */
--background: #f5f5f5;; --background: #060000;;
--card: #ffffff;; --card: #1d0d0d;;
--foreground: #1c1c1c;; --foreground: #ffe6e6;;
--primary-cta: #1c1c1c;; --primary-cta: #ff3d4a;;
--secondary-cta: #ffffff;; --secondary-cta: #1f0a0a;;
--accent: #15479c;; --accent: #7b2d2d;;
--background-accent: #a8cce8;; --background-accent: #b8111f;;
/* 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";