1 Commits

Author SHA1 Message Date
000e5ce256 Update src/app/blog/page.tsx 2026-01-22 20:07:51 +00:00

View File

@@ -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) {
@@ -99,14 +100,13 @@ export default function BlogPage() {
<NavbarLayoutFloatingOverlay
brandName="LuxeGlow"
navItems={[
{ name: "Home", id: "/home" },
{ name: "Home", id: "hero" },
{ name: "Products", id: "products" },
{ name: "About", id: "about" },
{ name: "Pricing", id: "pricing" },
{ name: "FAQ", id: "faq" }
{ name: "Home", id: "/" },
{ name: "Products", id: "/products" },
{ name: "About", id: "/about" },
{ name: "Pricing", id: "/pricing" },
{ name: "FAQ", id: "/faq" }
]}
button={{ text: "Shop Now", href: "products" }}
button={{ text: "Shop Now", href: "/products" }}
/>
{isLoading ? (