diff --git a/src/app/page.tsx b/src/app/page.tsx index 183a8e5..fffb7de 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -28,22 +28,10 @@ export default function LandingPage() {
@@ -105,60 +70,12 @@ export default function LandingPage() { gridVariant="four-items-2x2-equal-grid" useInvertedBackground={false} products={[ - { - id: "p1", - brand: "Tiny Loops", - name: "Lavender Butterfly Charm", - price: "$12.00", - rating: 5, - reviewCount: "24", - imageSrc: "http://img.b2bpic.net/free-photo/just-fun-beads-text-typography_53876-105994.jpg", - }, - { - id: "p2", - brand: "Tiny Loops", - name: "White Bead Bracelet", - price: "$15.00", - rating: 5, - reviewCount: "18", - imageSrc: "http://img.b2bpic.net/free-photo/dreamcatcher-held-by-hand-sun_23-2149192639.jpg", - }, - { - id: "p3", - brand: "Tiny Loops", - name: "Starry Night Keychain", - price: "$10.00", - rating: 4, - reviewCount: "32", - imageSrc: "http://img.b2bpic.net/free-photo/decorative-botanical-composition_23-2147725709.jpg", - }, - { - id: "p4", - brand: "Tiny Loops", - name: "Floral Charm Loop", - price: "$14.00", - rating: 5, - reviewCount: "21", - imageSrc: "http://img.b2bpic.net/free-photo/top-view-heart-shaped-lollipops_23-2149535350.jpg", - }, - { - id: "p5", - brand: "Tiny Loops", - name: "Hearty Lavender Charm", - price: "$11.00", - rating: 5, - reviewCount: "15", - imageSrc: "http://img.b2bpic.net/free-photo/women-connected-with-heart-shape-gingerbread-cookie_329181-6381.jpg", - }, - { - id: "p6", - brand: "Tiny Loops", - name: "Cloud Dreams Keychain", - price: "$13.00", - rating: 5, - reviewCount: "29", - imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-jelly-arrangement_23-2148679258.jpg", - }, + { id: "p1", brand: "Tiny Loops", name: "Lavender Butterfly Charm", price: "$12.00", rating: 5, reviewCount: "24", imageSrc: "http://img.b2bpic.net/free-photo/just-fun-beads-text-typography_53876-105994.jpg" }, + { id: "p2", brand: "Tiny Loops", name: "White Bead Bracelet", price: "$15.00", rating: 5, reviewCount: "18", imageSrc: "http://img.b2bpic.net/free-photo/dreamcatcher-held-by-hand-sun_23-2149192639.jpg" }, + { id: "p3", brand: "Tiny Loops", name: "Starry Night Keychain", price: "$10.00", rating: 4, reviewCount: "32", imageSrc: "http://img.b2bpic.net/free-photo/decorative-botanical-composition_23-2147725709.jpg" }, + { id: "p4", brand: "Tiny Loops", name: "Floral Charm Loop", price: "$14.00", rating: 5, reviewCount: "21", imageSrc: "http://img.b2bpic.net/free-photo/top-view-heart-shaped-lollipops_23-2149535350.jpg" }, + { id: "p5", brand: "Tiny Loops", name: "Hearty Lavender Charm", price: "$11.00", rating: 5, reviewCount: "15", imageSrc: "http://img.b2bpic.net/free-photo/women-connected-with-heart-shape-gingerbread-cookie_329181-6381.jpg" }, + { id: "p6", brand: "Tiny Loops", name: "Cloud Dreams Keychain", price: "$13.00", rating: 5, reviewCount: "29", imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-jelly-arrangement_23-2148679258.jpg" }, ]} title="Our Collection" description="Explore our curated selection of handcrafted accessories." @@ -167,63 +84,20 @@ export default function LandingPage() {