From cf637debdd9ce36bbc380b6ee68620c989c8ac67 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 6 Apr 2026 13:14:48 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 3ad7e48..bfc6179 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -8,7 +8,7 @@ import TeamCardEleven from '@/components/sections/team/TeamCardEleven'; import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix'; import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; -import { Zap, Shield, Star, Award, Utensils } from 'lucide-react'; +import { Zap, Award, Utensils, Star } from 'lucide-react'; export default function Page() { const navItems = [ @@ -46,6 +46,7 @@ export default function Page() { title="Our Culinary Journey" description="We believe in simplicity, quality, and passion. Our kitchen is where tradition meets innovation, creating unforgettable dining experiences for every guest." textboxLayout="default" + useInvertedBackground={false} bulletPoints={[{ title: "Fresh Ingredients", description: "Sourced locally every single day.", icon: Zap }, { title: "Master Chefs", description: "Bringing years of expertise to your plate.", icon: Award }]} /> @@ -54,6 +55,7 @@ export default function Page() { title="Signature Dishes" description="Explore our curated selection of favorites, designed to satisfy every palate." textboxLayout="default" + useInvertedBackground={false} gridVariant="three-columns-all-equal-width" animationType="slide-up" products={[ @@ -68,6 +70,7 @@ export default function Page() { title="Meet the Masters" description="The talented team behind the magic, dedicated to perfecting every bite." textboxLayout="default" + useInvertedBackground={false} animationType="slide-up" groups={[{ id: "kitchen", groupTitle: "Executive Kitchen Staff", members: [ @@ -82,6 +85,7 @@ export default function Page() { title="Guest Stories" description="What our guests have to say about their dining experience." textboxLayout="default" + useInvertedBackground={false} animationType="slide-up" testimonials={[ { id: "1", name: "Alice Johnson", handle: "@alicej", testimonial: "The best meal I've had in years. Highly recommend the signature steak!", icon: Utensils }, @@ -93,6 +97,7 @@ export default function Page() { -- 2.49.1