Update src/app/products/page.tsx

This commit is contained in:
2026-03-12 07:09:37 +00:00
parent 0c12c96642
commit a9dd558b9b

View File

@@ -15,7 +15,7 @@ export default function ProductsPage() {
borderRadius="rounded"
contentWidth="compact"
sizing="mediumLargeSizeLargeTitles"
background="noise"
background="circleGradient"
cardStyle="glass-elevated"
primaryButtonStyle="double-inset"
secondaryButtonStyle="layered"
@@ -45,61 +45,23 @@ export default function ProductsPage() {
tagAnimation="slide-up"
buttons={[
{
text: "Back to Home",
href: "/",
},
text: "Back to Home", href: "/"},
]}
buttonAnimation="slide-up"
textboxLayout="default"
products={[
{
id: "product-1",
name: "Classic Casual Shoes",
price: "₹1,299",
variant: "Available in Black, Brown, White",
imageSrc: "http://img.b2bpic.net/free-photo/low-section-man-sitting-chair-holding-coffee-cup-hand_23-2148164528.jpg?_wi=3",
imageAlt: "mens casual shoes",
},
id: "product-1", name: "Classic Casual Shoes", price: "₹1,299", variant: "Available in Black, Brown, White", imageSrc: "http://img.b2bpic.net/free-photo/low-section-man-sitting-chair-holding-coffee-cup-hand_23-2148164528.jpg", imageAlt: "mens casual shoes"},
{
id: "product-2",
name: "Women's Fashion Heels",
price: "₹1,599",
variant: "Available in Red, Black, Nude",
imageSrc: "http://img.b2bpic.net/free-photo/young-stylish-beautiful-woman-blue-printed-dress-red-bag-sunglasses-happy-mood-fashionable-outfit-trendy-apparel-smiling-sitting-summer-yellow-high-heel-shoes-accessories_285396-3824.jpg?_wi=3",
imageAlt: "womens fashion shoes",
},
id: "product-2", name: "Women's Fashion Heels", price: "₹1,599", variant: "Available in Red, Black, Nude", imageSrc: "http://img.b2bpic.net/free-photo/young-stylish-beautiful-woman-blue-printed-dress-red-bag-sunglasses-happy-mood-fashionable-outfit-trendy-apparel-smiling-sitting-summer-yellow-high-heel-shoes-accessories_285396-3824.jpg", imageAlt: "womens fashion shoes"},
{
id: "product-3",
name: "Kids Running Shoes",
price: "₹899",
variant: "Available in Blue, Pink, Green",
imageSrc: "http://img.b2bpic.net/free-photo/huge-variety-female-shoes-bags-different-colors-shelves-shop_627829-10311.jpg?_wi=3",
imageAlt: "kids shoes",
},
id: "product-3", name: "Kids Running Shoes", price: "₹899", variant: "Available in Blue, Pink, Green", imageSrc: "http://img.b2bpic.net/free-photo/huge-variety-female-shoes-bags-different-colors-shelves-shop_627829-10311.jpg", imageAlt: "kids shoes"},
{
id: "product-4",
name: "Sports Athletic Shoes",
price: "₹1,499",
variant: "Available in Black, White, Red",
imageSrc: "http://img.b2bpic.net/free-photo/active-woman-running-stairs_23-2148381928.jpg?_wi=3",
imageAlt: "sports shoes",
},
id: "product-4", name: "Sports Athletic Shoes", price: "₹1,499", variant: "Available in Black, White, Red", imageSrc: "http://img.b2bpic.net/free-photo/active-woman-running-stairs_23-2148381928.jpg", imageAlt: "sports shoes"},
{
id: "product-5",
name: "Comfortable Sandals",
price: "₹599",
variant: "Available in Brown, Tan, Black",
imageSrc: "http://img.b2bpic.net/free-photo/view-shoe-rack-stacking-pair-footwear_23-2150991545.jpg?_wi=2",
imageAlt: "sandals",
},
id: "product-5", name: "Comfortable Sandals", price: "₹599", variant: "Available in Brown, Tan, Black", imageSrc: "http://img.b2bpic.net/free-photo/view-shoe-rack-stacking-pair-footwear_23-2150991545.jpg", imageAlt: "sandals"},
{
id: "product-6",
name: "Formal Office Shoes",
price: "₹1,799",
variant: "Available in Black, Brown, Tan",
imageSrc: "http://img.b2bpic.net/free-photo/low-section-man-sitting-chair-holding-coffee-cup-hand_23-2148164528.jpg?_wi=4",
imageAlt: "formal shoes",
},
id: "product-6", name: "Formal Office Shoes", price: "₹1,799", variant: "Available in Black, Brown, Tan", imageSrc: "http://img.b2bpic.net/free-photo/low-section-man-sitting-chair-holding-coffee-cup-hand_23-2148164528.jpg", imageAlt: "formal shoes"},
]}
gridVariant="uniform-all-items-equal"
animationType="slide-up"
@@ -113,15 +75,11 @@ export default function ProductsPage() {
animationType="entrance-slide"
buttons={[
{
text: "Call Us",
href: "tel:+919824144953",
},
text: "Call Us", href: "tel:+919824144953"},
{
text: "Visit Store",
href: "https://maps.google.com/?q=Shop+no+9+Fortune+World+Cooperative+Housing+Daman",
},
text: "Visit Store", href: "https://maps.google.com/?q=Shop+no+9+Fortune+World+Cooperative+Housing+Daman"},
]}
background={{ variant: "noise" }}
background={{ variant: "plain" }}
useInvertedBackground={false}
/>
</div>
@@ -130,13 +88,9 @@ export default function ProductsPage() {
<FooterLogoReveal
logoText="Saikrupa Footwear"
leftLink={{
text: "Privacy Policy",
href: "#",
}}
text: "Privacy Policy", href: "#"}}
rightLink={{
text: "Terms of Service",
href: "#",
}}
text: "Terms of Service", href: "#"}}
/>
</div>
</ThemeProvider>