Update src/app/shop/page.tsx

This commit is contained in:
2026-02-17 13:14:29 +00:00
parent 4adaa2a974
commit 41e7a11197

View File

@@ -56,23 +56,23 @@ export default function ShopPage() {
columns={[ columns={[
{ {
title: "Collections", items: [ title: "Collections", items: [
{ label: "All Flowers", href: "#products" }, { label: "All Flowers", href: "products" },
{ label: "Seasonal", href: "#products" }, { label: "Seasonal", href: "products" },
{ label: "Premium", href: "#products" }, { label: "Premium", href: "products" },
{ label: "Custom Orders", href: "#contact" } { label: "Custom Orders", href: "contact" }
] ]
}, },
{ {
title: "About", items: [ title: "About", items: [
{ label: "Our Story", href: "#about" }, { label: "Our Story", href: "about" },
{ label: "Why Choose Us", href: "#features" }, { label: "Why Choose Us", href: "features" },
{ label: "Testimonials", href: "#testimonials" }, { label: "Testimonials", href: "testimonials" },
{ label: "Blog", href: "#" } { label: "Blog", href: "#" }
] ]
}, },
{ {
title: "Support", items: [ title: "Support", items: [
{ label: "Contact Us", href: "#contact" }, { label: "Contact Us", href: "contact" },
{ label: "Delivery Info", href: "#" }, { label: "Delivery Info", href: "#" },
{ label: "Care Guide", href: "#" }, { label: "Care Guide", href: "#" },
{ label: "FAQ", href: "#" } { label: "FAQ", href: "#" }
@@ -139,23 +139,23 @@ export default function ShopPage() {
columns={[ columns={[
{ {
title: "Collections", items: [ title: "Collections", items: [
{ label: "All Flowers", href: "#products" }, { label: "All Flowers", href: "products" },
{ label: "Seasonal", href: "#products" }, { label: "Seasonal", href: "products" },
{ label: "Premium", href: "#products" }, { label: "Premium", href: "products" },
{ label: "Custom Orders", href: "#contact" } { label: "Custom Orders", href: "contact" }
] ]
}, },
{ {
title: "About", items: [ title: "About", items: [
{ label: "Our Story", href: "#about" }, { label: "Our Story", href: "about" },
{ label: "Why Choose Us", href: "#features" }, { label: "Why Choose Us", href: "features" },
{ label: "Testimonials", href: "#testimonials" }, { label: "Testimonials", href: "testimonials" },
{ label: "Blog", href: "#" } { label: "Blog", href: "#" }
] ]
}, },
{ {
title: "Support", items: [ title: "Support", items: [
{ label: "Contact Us", href: "#contact" }, { label: "Contact Us", href: "contact" },
{ label: "Delivery Info", href: "#" }, { label: "Delivery Info", href: "#" },
{ label: "Care Guide", href: "#" }, { label: "Care Guide", href: "#" },
{ label: "FAQ", href: "#" } { label: "FAQ", href: "#" }