From 4ec205476b888721dc71b1d92a08f593d0547f35 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 22 May 2026 03:28:00 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) 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() {