Merge version_3 into main #3

Merged
bender merged 2 commits from version_3 into main 2026-05-24 21:07:29 +00:00
2 changed files with 51 additions and 4 deletions

View File

@@ -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."

49
src/app/products/page.tsx Normal file
View File

@@ -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 (
<ThemeProvider
defaultButtonVariant="bounce-effect"
defaultTextAnimation="entrance-slide"
borderRadius="pill"
contentWidth="small"
sizing="largeSmallSizeMediumTitles"
background="noiseDiagonalGradient"
cardStyle="soft-shadow"
primaryButtonStyle="shadow"
secondaryButtonStyle="radial-glow"
headingFontWeight="bold"
>
<ReactLenis root>
<NavbarStyleCentered
navItems={[
{ name: "Home", id: "/" },
{ name: "Products", id: "/products" },
]}
brandName="Spicy Gals"
/>
<div className="pt-32 pb-20">
<ProductCatalog
layout="page"
products={[
{ id: "1", name: "Summer Floral Dress", price: "₹1499", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/woman-wearing-floral-dress_23-2148906935.jpg" },
{ id: "2", name: "Urban Denim Jacket", price: "₹1999", rating: 4, imageSrc: "http://img.b2bpic.net/free-photo/girl-wearing-denim-jacket_23-2148911964.jpg" },
{ id: "3", name: "Casual White Tee", price: "₹599", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/white-tshirt-mockup_23-2148925488.jpg" }
]}
/>
</div>
<FooterLogoReveal
logoText="Spicy Gals"
leftLink={{ text: "Privacy", href: "#" }}
rightLink={{ text: "Terms", href: "#" }}
/>
</ReactLenis>
</ThemeProvider>
);
}