Merge version_4 into main #4

Merged
bender merged 2 commits from version_4 into main 2026-05-24 21:10:41 +00:00
2 changed files with 8 additions and 8 deletions

View File

@@ -81,10 +81,10 @@ export default function LandingPage() {
gridVariant="four-items-2x2-equal-grid"
useInvertedBackground={true}
products={[
{ id: "p1", name: "Casual Chic Top", price: "₹899", imageSrc: "http://img.b2bpic.net/free-photo/attractive-black-african-american-woman-stylish-outfit-green-studio-background_285396-10817.jpg" },
{ 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: "p1", name: "Casual Chic Top", price: "₹899", imageSrc: "https://www.instagram.com/p/C9_12345/media/?size=l" },
{ id: "p2", name: "Premium Cotton Dress", price: "₹1599", imageSrc: "https://www.instagram.com/p/C9_67890/media/?size=l" },
{ id: "p3", name: "Everyday Elegance Set", price: "₹1299", imageSrc: "https://www.instagram.com/p/C9_abcde/media/?size=l" },
{ id: "p4", name: "Modern Workwear Blouse", price: "₹999", imageSrc: "https://www.instagram.com/p/C9_fghij/media/?size=l" },
]}
title="Latest Collections"
description="Explore our curated picks for the season."
@@ -156,4 +156,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}

View File

@@ -32,9 +32,9 @@ export default function ProductsPage() {
<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" }
{ id: "1", name: "Summer Floral Dress", price: "₹1499", rating: 5, imageSrc: "https://www.instagram.com/p/C9_12345/media/?size=l" },
{ id: "2", name: "Urban Denim Jacket", price: "₹1999", rating: 4, imageSrc: "https://www.instagram.com/p/C9_67890/media/?size=l" },
{ id: "3", name: "Casual White Tee", price: "₹599", rating: 5, imageSrc: "https://www.instagram.com/p/C9_abcde/media/?size=l" }
]}
/>
</div>