From 50945b0869d73a1c7646660344e7f62a90991cb4 Mon Sep 17 00:00:00 2001 From: mulika-local Date: Sun, 28 Dec 2025 12:58:15 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index bff6882..3f3dbb7 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -122,28 +122,32 @@ export default function LandingPage() { name: "Classic Espresso", price: "$3.50", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766920190905-afgbf22n.jpg", - imageAlt: "Bold and rich espresso shot" + imageAlt: "Bold and rich espresso shot", + rating: 4.8 }, { id: "2", name: "Silky Cappuccino", price: "$5.00", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766504472539-8fcfbdrv.jpg", - imageAlt: "Creamy cappuccino with perfect foam" + imageAlt: "Creamy cappuccino with perfect foam", + rating: 4.9 }, { id: "3", name: "Smooth Latte", price: "$5.50", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766920191959-azsx4ig5.jpg", - imageAlt: "Smooth and creamy latte" + imageAlt: "Smooth and creamy latte", + rating: 4.7 }, { id: "4", name: "Cold Brew", price: "$4.50", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766920192796-cd28tqbs.jpg", - imageAlt: "Refreshing iced cold brew" + imageAlt: "Refreshing iced cold brew", + rating: 4.6 } ]} gridVariant="uniform-all-items-equal" @@ -370,4 +374,4 @@ export default function LandingPage() { ); -} \ No newline at end of file +}