diff --git a/src/app/page.tsx b/src/app/page.tsx index 5622278..04fd961 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -30,12 +30,12 @@ export default function LandingPage() { brandName="Honey Bee" navItems={[ { name: "Home", id: "hero" }, - { name: "Products", id: "products" }, + { name: "Products", id: "/shop" }, { name: "About", id: "about" }, { name: "Contact", id: "contact" } ]} button={{ - text: "Shop Now", href: "products" + text: "Shop Now", href: "/shop" }} /> @@ -50,7 +50,7 @@ export default function LandingPage() { imageSrc="https://img.b2bpic.net/free-photo/high-view-bowls-mugs-pottery-concept_23-2148679111.jpg" imageAlt="Beautiful collection of artisanal ceramic cups" buttons={[ - { text: "Shop Our Collection", href: "products" }, + { text: "Shop Our Collection", href: "/shop" }, { text: "Learn More", href: "about" } ]} /> @@ -194,9 +194,9 @@ export default function LandingPage() { columns={[ { title: "Shop", items: [ - { label: "All Products", href: "products" }, - { label: "Featured Items", href: "products" }, - { label: "Gift Sets", href: "products" } + { label: "All Products", href: "/shop" }, + { label: "Featured Items", href: "/shop" }, + { label: "Gift Sets", href: "/shop" } ] }, {