From 2c7bde2a2f006407ff97b8bce789ab09488e16f6 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 23 Feb 2026 13:12:02 +0000 Subject: [PATCH] Update src/app/blog/page.tsx --- src/app/blog/page.tsx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index accfdeb..76f5309 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -30,6 +30,7 @@ export default function BlogPage() { navItems={[ { name: "Home", id: "/" }, { name: "Blog", id: "/blog" }, + { name: "Contact", id: "/contact" } ]} button={{ text: "Shop Now", href: "/shop" }} className="py-4 px-6 md:px-8" @@ -64,21 +65,20 @@ export default function BlogPage() { { title: "Shop", items: [ { label: "Bouquets", href: "/shop" }, - { label: "Events", href: "/#contact" }, - { label: "Custom Orders", href: "/#contact" }, + { label: "Events", href: "/contact" }, + { label: "Custom Orders", href: "/contact" }, ], }, { title: "Company", items: [ { label: "About Us", href: "/#about" }, - { label: "Testimonials", href: "/#testimonials" }, - { label: "Blog", href: "/blog" }, + { label: "Testimonials", href: "/#testimonials" }, { label: "Blog", href: "/blog" }, ], }, { title: "Support", items: [ - { label: "FAQ", href: "/#contact" }, - { label: "Contact", href: "/#contact" }, + { label: "FAQ", href: "/contact" }, + { label: "Contact", href: "/contact" }, ], }, ]}