diff --git a/src/app/page.tsx b/src/app/page.tsx index 551ae0f..e1801cc 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -34,7 +34,7 @@ export default function LandingPage() { navItems={[ { name: "Home", id: "hero" }, { name: "About", id: "about" }, - { name: "Shop", id: "products" }, + { name: "Products", id: "/products" }, { name: "Contact", id: "contact" } ]} brandName="Superette Jalal" @@ -71,6 +71,7 @@ export default function LandingPage() { textboxLayout="split" gridVariant="four-items-2x2-equal-grid" useInvertedBackground={false} + buttons={[{ text: "Browse Items", href: "/products" }]} products={[ { id: "1", name: "Artisanal Perfume Collection", price: "$45.00", imageSrc: "http://img.b2bpic.net/free-photo/elegant-perfume-bottles-display_23-2149386345.jpg" }, { id: "2", name: "Professional Cosmetic Palette", price: "$29.99", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-cosmetic-products-table_23-2149226543.jpg" }, @@ -155,9 +156,9 @@ export default function LandingPage() {