From 9408ad598cd520b2ab3696298785ce191e430644 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 25 Mar 2026 07:51:32 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 226 +++++++++++++---------------------------------- 1 file changed, 62 insertions(+), 164 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 8438f73..80bf7dc 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,14 +2,17 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; -import ContactCTA from '@/components/sections/contact/ContactCTA'; -import FaqBase from '@/components/sections/faq/FaqBase'; + import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; import HeroBillboardRotatedCarousel from '@/components/sections/hero/HeroBillboardRotatedCarousel'; import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout'; import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; import ProductCardFour from '@/components/sections/product/ProductCardFour'; -import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen'; + +// NEW IMPORTS +import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive'; +import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia'; +import ContactSplit from '@/components/sections/contact/ContactSplit'; export default function LandingPage() { return ( @@ -30,25 +33,15 @@ export default function LandingPage() { @@ -57,51 +50,28 @@ export default function LandingPage() {
-
-
- console.log("Contact form submitted with email:", email)} // Placeholder onSubmit + imageSrc="http://img.b2bpic.net/free-photo/full-shot-people-eating-restaurant_23-2149591942.jpg" // Added media + imageAlt="Restaurant dining area" + mediaAnimation="slide-up" + mediaPosition="left" />
@@ -281,33 +191,21 @@ export default function LandingPage() { { items: [ { - label: "About Us", - href: "#about", - }, + label: "About Us", href: "#about"}, { - label: "Our Menu", - href: "#menu", - }, + label: "Our Menu", href: "#menu"}, { - label: "Reservations", - href: "#contact", - }, + label: "Reservations", href: "#contact"}, ], }, { items: [ { - label: "Contact", - href: "#contact", - }, + label: "Contact", href: "#contact"}, { - label: "Privacy Policy", - href: "#", - }, + label: "Privacy Policy", href: "#"}, { - label: "Terms of Service", - href: "#", - }, + label: "Terms of Service", href: "#"}, ], }, ]} -- 2.49.1