From d0a2f12cb5fa98b1c5510100ea8b7bc1b2922445 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 24 May 2026 21:07:25 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 18250f9..cd31111 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -33,7 +33,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="Spicy Gals" @@ -45,7 +45,7 @@ export default function LandingPage() { background={{ variant: "gradient-bars" }} title="Spicy Fashion, Premium Quality, Always On Trend" description="Discover the latest womens styles at Spicy Gals. Shop online or visit us at Nehru Nagar, Bhilai—where bold fashion meets everyday elegance." - buttons={[{ text: "Shop Now", href: "#products" }]} + buttons={[{ text: "Shop Now", href: "/products" }]} imageSrc="http://img.b2bpic.net/free-photo/pretty-brunette-girl-swimsuit-covering-face-with-straw-hat-playfully-looking-camera-beach-bed-with-transparent-curtains_574295-2281.jpg" imageAlt="Spicy Gals Fashion Showcase" /> @@ -85,8 +85,6 @@ export default function LandingPage() { { id: "p2", name: "Premium Cotton Dress", price: "₹1599", imageSrc: "http://img.b2bpic.net/free-photo/stylish-young-woman-long-grey-dress_613910-7108.jpg" }, { id: "p3", name: "Everyday Elegance Set", price: "₹1299", imageSrc: "http://img.b2bpic.net/free-photo/middle-eastern-client-wheelchair-examining-clothes-racks-retail-store_482257-118472.jpg" }, { id: "p4", name: "Modern Workwear Blouse", price: "₹999", imageSrc: "http://img.b2bpic.net/free-photo/side-view-elegant-pensive-girl-wearing-trendy-warm-outfit-raising-leg-up-looking-away-while-leaning-street-lantern-cold-winter-weather_8353-12631.jpg" }, - { id: "p5", name: "Trendsetter Skirt", price: "₹1199", imageSrc: "http://img.b2bpic.net/free-photo/trendy-lady-with-pink-sunglasses-posing-outside-shorthaired-girl-beige-jacket-jeans-tshirt-looking-into-camera-white-background_197531-29363.jpg" }, - { id: "p6", name: "Boho Evening Wrap", price: "₹1799", imageSrc: "http://img.b2bpic.net/free-photo/stylish-casual-african-american-man-jeans-jacket-black-beret-clothes-store-looking-new-military-shirt_627829-1676.jpg" }, ]} title="Latest Collections" description="Explore our curated picks for the season." -- 2.49.1 From ccdf932f95ec05207d84b1c2f5b189f168806d18 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 24 May 2026 21:07:25 +0000 Subject: [PATCH 2/2] Add src/app/products/page.tsx --- src/app/products/page.tsx | 49 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 src/app/products/page.tsx diff --git a/src/app/products/page.tsx b/src/app/products/page.tsx new file mode 100644 index 0000000..a3e2457 --- /dev/null +++ b/src/app/products/page.tsx @@ -0,0 +1,49 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; +import ProductCatalog from '@/components/ecommerce/productCatalog/ProductCatalog'; +import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; + +export default function ProductsPage() { + return ( + + + +
+ +
+ +
+
+ ); +} \ No newline at end of file -- 2.49.1