5 Commits

Author SHA1 Message Date
f28053abdf Update src/app/globals.css 2026-01-22 20:08:01 +00:00
e44590f35f Update src/app/page.tsx 2026-01-22 20:03:31 +00:00
4529946709 Update src/app/layout.tsx 2026-01-22 20:03:30 +00:00
c1c0036787 Update src/app/globals.css 2026-01-22 20:03:29 +00:00
f72840b748 Update src/app/blog/page.tsx 2026-01-22 20:03:28 +00:00
4 changed files with 21 additions and 20 deletions

View File

@@ -79,7 +79,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) {
@@ -152,7 +153,7 @@ export default function BlogPage() {
)} )}
<FooterMedia <FooterMedia
imageSrc="asset://bakery-storefront" imageSrc="https://img.b2bpic.net/free-photo/delicious-donut-shop-ai-generated_23-2150694732.jpg"
imageAlt="Artisan Bakery storefront" imageAlt="Artisan Bakery storefront"
logoText="Artisan Bakery" logoText="Artisan Bakery"
copyrightText="© 2025 Artisan Bakery. All rights reserved." copyrightText="© 2025 Artisan Bakery. All rights reserved."

View File

@@ -4,21 +4,21 @@
/* Base units */ /* Base units */
/* --vw is set by ThemeProvider */ /* --vw is set by ThemeProvider */
/* --background: #fcf6ec;; /* --background: #010912;;
--card: #f3ede2;; --card: #152840;;
--foreground: #2e2521;; --foreground: #e6f0ff;;
--primary-cta: #2e2521;; --primary-cta: #cee7ff;;
--secondary-cta: #ffffff;; --secondary-cta: #0e1a29;;
--accent: #b2a28b;; --accent: #3f5c79;;
--background-accent: #b2a28b;; */ --background-accent: #004a93;; */
--background: #fcf6ec;; --background: #010912;;
--card: #f3ede2;; --card: #152840;;
--foreground: #2e2521;; --foreground: #e6f0ff;;
--primary-cta: #2e2521;; --primary-cta: #cee7ff;;
--secondary-cta: #ffffff;; --secondary-cta: #0e1a29;;
--accent: #b2a28b;; --accent: #3f5c79;;
--background-accent: #b2a28b;; --background-accent: #004a93;;
/* 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 NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';