Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 865322d11b | |||
| f28053abdf | |||
| e44590f35f | |||
| 4529946709 | |||
| c1c0036787 | |||
| f72840b748 |
@@ -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."
|
||||||
|
|||||||
@@ -4,21 +4,21 @@
|
|||||||
/* Base units */
|
/* Base units */
|
||||||
/* --vw is set by ThemeProvider */
|
/* --vw is set by ThemeProvider */
|
||||||
|
|
||||||
/* --background: #fcf6ec;;
|
/* --background: #060000;;
|
||||||
--card: #f3ede2;;
|
--card: #1d0d0d;;
|
||||||
--foreground: #2e2521;;
|
--foreground: #ffe6e6;;
|
||||||
--primary-cta: #2e2521;;
|
--primary-cta: #ff3d4a;;
|
||||||
--secondary-cta: #ffffff;;
|
--secondary-cta: #1f0a0a;;
|
||||||
--accent: #b2a28b;;
|
--accent: #7b2d2d;;
|
||||||
--background-accent: #b2a28b;; */
|
--background-accent: #b8111f;; */
|
||||||
|
|
||||||
--background: #fcf6ec;;
|
--background: #060000;;
|
||||||
--card: #f3ede2;;
|
--card: #1d0d0d;;
|
||||||
--foreground: #2e2521;;
|
--foreground: #ffe6e6;;
|
||||||
--primary-cta: #2e2521;;
|
--primary-cta: #ff3d4a;;
|
||||||
--secondary-cta: #ffffff;;
|
--secondary-cta: #1f0a0a;;
|
||||||
--accent: #b2a28b;;
|
--accent: #7b2d2d;;
|
||||||
--background-accent: #b2a28b;;
|
--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);
|
||||||
|
|||||||
@@ -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';
|
||||||
|
|||||||
Reference in New Issue
Block a user