Update src/app/blog/page.tsx

This commit is contained in:
2026-02-22 20:30:45 +00:00
parent a8b5701770
commit 2a2bfe9963

View File

@@ -29,13 +29,13 @@ export default function BlogPage() {
brandName="Zoryana Bakery"
navItems={[
{ name: "Home", id: "/" },
{ name: "About Us", id: "about" },
{ name: "Products", id: "products" },
{ name: "Testimonials", id: "testimonials" },
{ name: "FAQ", id: "faq" },
{ name: "Contact", id: "contact" },
{ name: "About Us", id: "/#about" },
{ name: "Products", id: "/#products" },
{ name: "Testimonials", id: "/#testimonials" },
{ name: "FAQ", id: "/#faq" },
{ name: "Contact", id: "/#contact" },
]}
button={{ text: "Order Now", href: "#contact" }}
button={{ text: "Order Now", href: "/#contact" }}
className="py-4 px-6 md:px-8"
buttonClassName="px-5 py-2 text-sm md:text-base"
buttonTextClassName="font-medium"
@@ -62,20 +62,20 @@ export default function BlogPage() {
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="https://img.b2bpic.net/free-photo/bakery-shop-gourmet-concept_53876-163311.jpg?_wi=3"
imageSrc="https://img.b2bpic.net/free-photo/bakery-shop-gourmet-concept_53876-163311.jpg"
imageAlt="Exterior of Zoryana Bakery at dusk"
columns={[
{
title: "Quick Links", items: [
{ label: "Home", href: "/" },
{ label: "Products", href: "#products" },
{ label: "About Us", href: "#about" },
{ label: "Products", href: "/#products" },
{ label: "About Us", href: "/#about" },
],
},
{
title: "Connect", items: [
{ label: "Contact Us", href: "#contact" },
{ label: "FAQ", href: "#faq" },
{ label: "Contact Us", href: "/#contact" },
{ label: "FAQ", href: "/#faq" },
],
},
{