diff --git a/src/app/page.tsx b/src/app/page.tsx index a92684c..d3db7ee 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,8 +2,7 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; -import ContactText from '@/components/sections/contact/ContactText'; -import FaqBase from '@/components/sections/faq/FaqBase'; +import FaqSplitText from '@/components/sections/faq/FaqSplitText'; import FeatureCardOne from '@/components/sections/feature/FeatureCardOne'; import FooterMedia from '@/components/sections/footer/FooterMedia'; import HeroSplitTestimonial from '@/components/sections/hero/HeroSplitTestimonial'; @@ -12,6 +11,7 @@ import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarS import ProductCardThree from '@/components/sections/product/ProductCardThree'; import SocialProofOne from '@/components/sections/socialProof/SocialProofOne'; import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen'; +import ContactSplit from '@/components/sections/contact/ContactSplit'; import { Coffee, Croissant, Flame, Gift, Home } from "lucide-react"; export default function LandingPage() { @@ -23,9 +23,9 @@ export default function LandingPage() { contentWidth="mediumLarge" sizing="medium" background="circleGradient" - cardStyle="gradient-radial" - primaryButtonStyle="gradient" - secondaryButtonStyle="layered" + cardStyle="solid" + primaryButtonStyle="flat" + secondaryButtonStyle="solid" headingFontWeight="light" > @@ -33,25 +33,15 @@ export default function LandingPage() { @@ -61,112 +51,80 @@ export default function LandingPage() {
-
-
@@ -382,52 +284,41 @@ export default function LandingPage() { logoText="Theatre" columns={[ { - title: "Explore", - items: [ + title: "Explore", items: [ { - label: "About Us", - href: "#about", + label: "About Us", href: "#about" }, { - label: "Menu", - href: "#menu", + label: "Menu", href: "#menu" }, { - label: "Experience", - href: "#experience", - }, - ], + label: "Experience", href: "#experience" + } + ] }, { - title: "Connect", - items: [ + title: "Connect", items: [ { - label: "Contact", - href: "#contact", + label: "Contact", href: "#contact" }, { - label: "Testimonials", - href: "#testimonials", + label: "Testimonials", href: "#testimonials" }, { - label: "FAQ", - href: "#faq", - }, - ], + label: "FAQ", href: "#faq" + } + ] }, { - title: "Legal", - items: [ + title: "Legal", items: [ { - label: "Privacy Policy", - href: "#", + label: "Privacy Policy", href: "#" }, { - label: "Terms of Service", - href: "#", - }, - ], - }, + label: "Terms of Service", href: "#" + } + ] + } ]} copyrightText="© 2026 Theatre – Live Bakery & Cafe. All Rights Reserved." /> @@ -435,4 +326,4 @@ export default function LandingPage() { ); -} +} \ No newline at end of file