Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 2204a88e5f | |||
| cc2a15ae13 | |||
| f5c55e97a2 | |||
| bf8b09b9fa | |||
| 02ddf531bd | |||
| 91636e1ff0 |
@@ -55,11 +55,12 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
gridVariant="four-items-2x2-equal-grid"
|
||||
useInvertedBackground={false}
|
||||
buttons={[{ text: "View Full Catalog", href: "#" }]}
|
||||
products={[
|
||||
{ id: "1", name: "Wireless Earbuds", price: "$49", variant: "S", imageSrc: "http://img.b2bpic.net/free-photo/modern-apartment-with-luxury-vibe-featuring-spacious-living-room_482257-120668.jpg" },
|
||||
{ id: "2", name: "Modern Watch", price: "$129", variant: "M", imageSrc: "http://img.b2bpic.net/free-photo/crop-man-reading-magazine_23-2147793091.jpg" },
|
||||
{ id: "3", name: "Smart Speaker", price: "$79", variant: "L", imageSrc: "http://img.b2bpic.net/free-photo/top-view-vinyl-record-assortment_23-2149075990.jpg" },
|
||||
{ id: "4", name: "Gaming Mouse", price: "$35", variant: "S", imageSrc: "http://img.b2bpic.net/free-photo/top-view-blue-computer-mouse-with-yellow-background_23-2148226814.jpg" }
|
||||
{ id: "1", name: "Wireless Earbuds", price: "$49", variant: "S", imageSrc: "http://img.b2bpic.net/free-photo/modern-apartment-with-luxury-vibe-featuring-spacious-living-room_482257-120668.jpg", onProductClick: () => console.log("Discovering Earbuds") },
|
||||
{ id: "2", name: "Modern Watch", price: "$129", variant: "M", imageSrc: "http://img.b2bpic.net/free-photo/crop-man-reading-magazine_23-2147793091.jpg", onProductClick: () => console.log("Discovering Watch") },
|
||||
{ id: "3", name: "Smart Speaker", price: "$79", variant: "L", imageSrc: "http://img.b2bpic.net/free-photo/top-view-vinyl-record-assortment_23-2149075990.jpg", onProductClick: () => console.log("Discovering Speaker") },
|
||||
{ id: "4", name: "Gaming Mouse", price: "$35", variant: "S", imageSrc: "http://img.b2bpic.net/free-photo/top-view-blue-computer-mouse-with-yellow-background_23-2148226814.jpg", onProductClick: () => console.log("Discovering Mouse") }
|
||||
]}
|
||||
title="Top Selling Products"
|
||||
description="Browse our premium selection."
|
||||
|
||||
Reference in New Issue
Block a user