From a252479caf19c18fe271bc45e3fe51a5d00bfb60 Mon Sep 17 00:00:00 2001 From: mulika-local Date: Sun, 28 Dec 2025 12:58:13 +0000 Subject: [PATCH 1/3] Update src/app/globals.css --- src/app/globals.css | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/app/globals.css b/src/app/globals.css index 80e6c8a..f55db89 100644 --- a/src/app/globals.css +++ b/src/app/globals.css @@ -5,12 +5,12 @@ /* --vw is set by ThemeProvider */ --background: #ffffff; - --card: #fcfcfc; - --foreground: #120006e6; - --primary-cta: #e63946; + --card: #f7fffa; + --foreground: #001a0a; + --primary-cta: #0a7039; --secondary-cta: #ffffff; - --accent: #e2e2e2; - --background-accent: #c4c4c4; + --accent: #a8d9be; + --background-accent: #6bbf8e; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); -- 2.49.1 From 3b4466cb2c70b6af2eaf4fd73eef6290d1689a59 Mon Sep 17 00:00:00 2001 From: mulika-local Date: Sun, 28 Dec 2025 12:58:14 +0000 Subject: [PATCH 2/3] Update src/app/layout.tsx --- src/app/layout.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 4dbe100..bd5bf6c 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1274,4 +1274,4 @@ export default function RootLayout({ ); -} \ No newline at end of file +} -- 2.49.1 From 50945b0869d73a1c7646660344e7f62a90991cb4 Mon Sep 17 00:00:00 2001 From: mulika-local Date: Sun, 28 Dec 2025 12:58:15 +0000 Subject: [PATCH 3/3] 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 +} -- 2.49.1