From 039b30b02d12a4df89d05ac0f055f406da8a60fc Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 30 Apr 2026 10:53:50 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index d82aba2..1452c86 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,9 +2,8 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; +import { Star, Circle } from 'lucide-react'; import ContactSplit from '@/components/sections/contact/ContactSplit'; -import FaqBase from '@/components/sections/faq/FaqBase'; -import FeatureCardEight from '@/components/sections/feature/FeatureCardEight'; import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; import HeroSignup from '@/components/sections/hero/HeroSignup'; import SplitAbout from '@/components/sections/about/SplitAbout'; @@ -38,6 +37,7 @@ export default function LandingPage() { { name: "Contact", id: "contact" }, ]} brandName="Mi Casa" + button={{ text: "Order", onClick: () => {} }} /> @@ -91,8 +91,8 @@ export default function LandingPage() { description="Quality you can taste, service you will love." animationType="slide-up" metrics={[ - { id: "m1", title: "Customer Rating", value: "4.7/5", icon: (props) => }, - { id: "m2", title: "Years Serving", value: "10+", icon: (props) => } + { id: "m1", title: "Customer Rating", value: "4.7/5", icon: Star }, + { id: "m2", title: "Years Serving", value: "10+", icon: Circle } ]} /> @@ -120,6 +120,7 @@ export default function LandingPage() { tag="Contact Us" background={{ variant: "gradient-bars" }} imageSrc="https://img.b2bpic.net/free-photo/restaurant-table-setup_23-2148762505.jpg" + useInvertedBackground={true} /> -- 2.49.1