From 27a1c670a05a1b6badf0c4babfc1564c250233e0 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 5 Apr 2026 17:16:32 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 835e564..49dfce5 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -72,9 +72,9 @@ export default function LandingPage() { gridVariant="three-columns-all-equal-width" useInvertedBackground={false} products={[ - { id: "c1", name: "Classic Vanilla", price: "$4.50" }, - { id: "c2", name: "Milk Chocolate", price: "$5.25" }, - { id: "c3", name: "Salted Caramel", price: "$5.50" }, + { id: "c1", name: "Classic Vanilla", price: "$4.50", imageSrc: "https://images.unsplash.com/photo-1550989460-0adf9ea622e2" }, + { id: "c2", name: "Milk Chocolate", price: "$5.25", imageSrc: "https://images.unsplash.com/photo-1582234372134-2b8872ba6556" }, + { id: "c3", name: "Salted Caramel", price: "$5.50", imageSrc: "https://images.unsplash.com/photo-1596078442343-4e31464731a5" }, ]} title="Our Flavors" description="Hand-picked rotating flavors made fresh daily—find your new favorite today!" @@ -87,8 +87,8 @@ export default function LandingPage() { textboxLayout="split" useInvertedBackground={false} features={[ - { id: "t1", title: "Fresh Fruit", author: "Topping", description: "Crisp, sweet, and seasonal berries.", tags: ["Premium"] }, - { id: "t2", title: "Cookie Dough", author: "Topping", description: "The ultimate sweet indulgence.", tags: ["Classic"] }, + { id: "t1", title: "Fresh Fruit", author: "Topping", description: "Crisp, sweet, and seasonal berries.", tags: ["Premium"], imageSrc: "https://images.unsplash.com/photo-1550989460-0adf9ea622e2" }, + { id: "t2", title: "Cookie Dough", author: "Topping", description: "The ultimate sweet indulgence.", tags: ["Classic"], imageSrc: "https://images.unsplash.com/photo-1582234372134-2b8872ba6556" }, ]} title="Build Your Perfect Cup" description="Add unlimited toppings for just $2. Fresh fruit, cookie dough, and more to make it yours!" @@ -103,6 +103,7 @@ export default function LandingPage() { author="Happy Cyclist" ratingAnimation="slide-up" avatarsAnimation="slide-up" + avatars={[{ src: "https://images.unsplash.com/photo-1535713875002-d1d0cf377fde", alt: "Avatar" }]} /> -- 2.49.1