Update src/app/page.tsx

This commit is contained in:
2025-12-28 12:58:15 +00:00
parent 3b4466cb2c
commit 50945b0869

View File

@@ -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() {
</div>
</ThemeProvider>
);
}
}