Update src/app/blog/page.tsx

This commit is contained in:
2026-02-23 13:12:02 +00:00
parent 9decd38fe8
commit 2c7bde2a2f

View File

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