diff --git a/src/app/page.tsx b/src/app/page.tsx index e2336c5..2f04863 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -31,6 +31,7 @@ export default function LandingPage() { navItems={[ {name: "Home", id: "hero"}, {name: "Products", id: "products"}, + {name: "Shop", id: "/shop"}, {name: "About", id: "about"}, {name: "Testimonials", id: "testimonials"}, {name: "Contact", id: "contact"} @@ -47,7 +48,7 @@ export default function LandingPage() { description="Discover the beauty of fresh, handcrafted floral arrangements. From elegant roses to vibrant sunflowers, we bring nature's finest blooms to your doorstep with care and passion." background={{ variant: "radial-gradient" }} buttons={[ - { text: "Shop Now", href: "#products" }, + { text: "Shop Now", href: "/shop" }, { text: "Learn More", href: "#about" } ]} layoutOrder="default" @@ -234,7 +235,7 @@ export default function LandingPage() { columns={[ { title: "Shop", items: [ - { label: "All Arrangements", href: "#products" }, + { label: "All Arrangements", href: "/shop" }, { label: "Collections", href: "#feature" }, { label: "Custom Orders", href: "#contact" } ] @@ -260,4 +261,4 @@ export default function LandingPage() { ); -} \ No newline at end of file +}