Update src/app/blog/page.tsx

This commit is contained in:
2026-02-22 22:26:53 +00:00
parent 3a9fece564
commit 1d44720d25

View File

@@ -28,13 +28,13 @@ export default function BlogPage() {
<NavbarLayoutFloatingOverlay
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "about" },
{ name: "Menu", id: "products" },
{ name: "Testimonials", id: "testimonials" },
{ name: "Contact", id: "contact" },
{ name: "About", id: "/#about" },
{ name: "Menu", id: "/#products" },
{ name: "Testimonials", id: "/#testimonials" },
{ name: "Contact", id: "/#contact" },
]}
brandName="Смачна Випічка"
button={{ text: "Order Now", href: "#products" }}
button={{ text: "Order Now", href: "/#products" }}
className="py-4 px-6"
buttonClassName="px-5 py-2"
buttonTextClassName="font-medium"
@@ -61,27 +61,27 @@ export default function BlogPage() {
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="https://img.b2bpic.net/free-photo/ripe-big-pumpkin-burlap_114579-29487.jpg?_wi=2"
imageSrc="https://img.b2bpic.net/free-photo/ripe-big-pumpkin-burlap_114579-29487.jpg"
imageAlt="Rustic fabric or dough texture as footer background."
logoText="Смачна Випічка"
columns={[
{
title: "Menu", items: [
{ label: "Breads", href: "#products" },
{ label: "Pastries", href: "#products" },
{ label: "Custom Cakes", href: "#contact" },
{ label: "Breads", href: "/#products" },
{ label: "Pastries", href: "/#products" },
{ label: "Custom Cakes", href: "/#contact" },
],
},
{
title: "About Us", items: [
{ label: "Our Story", href: "#about" },
{ label: "Reviews", href: "#testimonials" },
{ label: "Our Story", href: "/#about" },
{ label: "Reviews", href: "/#testimonials" },
],
},
{
title: "Support", items: [
{ label: "FAQ", href: "#faq" },
{ label: "Contact", href: "#contact" },
{ label: "FAQ", href: "/#faq" },
{ label: "Contact", href: "/#contact" },
],
},
]}