From df46d923d765a1846fbe8d6a3a8f29a908e34d08 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 15 Apr 2026 07:22:35 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 76bbde2..d9b5505 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -114,12 +114,13 @@ export default function LandingPage() { textboxLayout="default" useInvertedBackground={false} testimonials={[ - { name: "Anna S.", testimonial: "Amazing food!", rating: 5 }, - { name: "Markus L.", testimonial: "Authentic flavors.", rating: 5 } + { id: "1", title: "Excellent", quote: "Amazing food!", name: "Anna S.", role: "Customer" }, + { id: "2", title: "Great", quote: "Authentic flavors.", name: "Markus L.", role: "Customer" } ]} kpiItems={[ { value: "5.0", label: "Average Rating" }, - { value: "5000+", label: "Satisfied Guests" } + { value: "5000+", label: "Satisfied Guests" }, + { value: "100%", label: "Authentic" } ]} /> -- 2.49.1