From 08349e3ccab3e6a631e6e29d6a27014e3efe4639 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 14 May 2026 15:08:39 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/src/app/page.tsx b/src/app/page.tsx index 846385d..5a66278 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -94,6 +94,10 @@ export default function LandingPage() { useInvertedBackground={false} title="Precision in Every Slice" description="Measuring our commitment to perfection by the numbers." + metrics={[ + { id: "m1", value: "98%", title: "Local Sourcing", description: "Ingredients sourced directly from regional farms.", imageSrc: "https://images.unsplash.com/photo-1594212699903-ec8a3eca50f5" }, + { id: "m2", value: "48h", title: "Dough Proofing", description: "Slow-fermented for maximum flavor and texture.", imageSrc: "https://images.unsplash.com/photo-1513104890138-7c749659a591" } + ]} /> @@ -105,6 +109,12 @@ export default function LandingPage() { useInvertedBackground={false} title="Voices of the Indulgent" description="What our guests say about their dining journey at Kouzina." + testimonials={[ + { id: "t1", name: "Sarah Chen", role: "Food Critic", company: "NY Dining", rating: 5 }, + { id: "t2", name: "Mark Davis", role: "Chef", company: "Table 9", rating: 5 }, + { id: "t3", name: "Julia M.", role: "Regular", company: "Local Patron", rating: 5 }, + { id: "t4", name: "Leo B.", role: "Gourmet", company: "Foodie Blog", rating: 5 } + ]} /> @@ -115,6 +125,10 @@ export default function LandingPage() { title="Culinary Inquiries" description="Curated answers to your questions about our methods and standards." faqsAnimation="slide-up" + faqs={[ + { id: "f1", title: "Do you offer gluten-free options?", content: "Yes, we use a special gluten-free flour blend prepared in a dedicated area." }, + { id: "f2", title: "Are reservations required?", content: "While walk-ins are welcome, we recommend reservations for peak hours." } + ]} /> -- 2.49.1