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" }, ], }, ]}