Update src/app/page.tsx

This commit is contained in:
2026-04-20 23:12:32 +00:00
parent 480b5fc426
commit 0061be29b9

View File

@@ -2,10 +2,10 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react"; import ReactLenis from "lenis/react";
import ContactText from '@/components/sections/contact/ContactText'; import ContactSplit from '@/components/sections/contact/ContactSplit';
import FaqSplitText from '@/components/sections/faq/FaqSplitText'; import FaqSplitText from '@/components/sections/faq/FaqSplitText';
import FeatureBento from '@/components/sections/feature/FeatureBento'; import FeatureBento from '@/components/sections/feature/FeatureBento';
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import HeroSplitDualMedia from '@/components/sections/hero/HeroSplitDualMedia'; import HeroSplitDualMedia from '@/components/sections/hero/HeroSplitDualMedia';
import MetricCardTwo from '@/components/sections/metrics/MetricCardTwo'; import MetricCardTwo from '@/components/sections/metrics/MetricCardTwo';
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
@@ -168,26 +168,26 @@ export default function LandingPage() {
</div> </div>
<div id="contact" data-section="contact"> <div id="contact" data-section="contact">
<ContactText <ContactSplit
useInvertedBackground={false} tag="Visit Us"
title="Reserve Your Table"
description="Located in the heart of Nairobi, join us for an authentic Kenyan experience. We are open daily from 11:00 AM to 10:00 PM."
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CdrljRkwDduYiKFGmeEzNbuKsh/uploaded-1776726734736-frtt4cjp.jpg"
background={{ variant: "gradient-bars" }} background={{ variant: "gradient-bars" }}
text="Ready to experience the legend? Reserve your table now for an unforgettable authentic Kenyan dining experience." buttonText="Book Now"
buttons={[ onSubmit={(email) => console.log("Reservations inquiry for:", email)}
{ text: "Call to Reserve", href: "tel:+254700000000" },
{ text: "Book Online", href: "#" }
]}
/> />
</div> </div>
<div id="footer" data-section="footer"> <div id="footer" data-section="footer">
<FooterBaseReveal <FooterBaseCard
logoText="Mama Oliech" logoText="Mama Oliech"
columns={[ columns={[
{ title: "Discover", items: [{ label: "About Us", href: "#about" }, { label: "Menu", href: "#products" }, { label: "Press", href: "#" }] }, { title: "Kitchen Hours", items: [{ label: "Daily: 11:00 AM - 10:00 PM", href: "#" }] },
{ title: "Connect", items: [{ label: "Reservations", href: "#contact" }, { label: "Instagram", href: "#" }, { label: "Facebook", href: "#" }] }, { title: "Location", items: [{ label: "Marcus Garvey Road, Nairobi", href: "#" }, { label: "+254 700 000 000", href: "tel:+254700000000" }] },
{ title: "Legal", items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }] } { title: "Connect", items: [{ label: "Instagram", href: "#" }, { label: "Facebook", href: "#" }, { label: "Twitter", href: "#" }] }
]} ]}
copyrightText="© 2024 Mama Oliech Restaurant. All rights reserved." copyrightText="© 2025 Mama Oliech Restaurant. All rights reserved."
/> />
</div> </div>
</ReactLenis> </ReactLenis>