Update src/app/page.tsx

This commit is contained in:
2026-06-03 14:04:09 +00:00
parent 0010250984
commit ef42c35b3c

View File

@@ -4,13 +4,13 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactSplit from '@/components/sections/contact/ContactSplit';
import FeatureCardOne from '@/components/sections/feature/FeatureCardOne';
import FooterSimple from '@/components/sections/footer/FooterSimple';
import HeroBillboardCarousel from '@/components/sections/hero/HeroBillboardCarousel';
import MetricCardTwo from '@/components/sections/metrics/MetricCardTwo';
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen';
import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
import FooterBase from '@/components/sections/footer/FooterBase';
export default function LandingPage() {
return (
@@ -218,53 +218,55 @@ export default function LandingPage() {
</div>
<div id="footer" data-section="footer">
<FooterSimple
<FooterBase
logoText="Zaaeqa Restaurant"
copyrightText="© 2024 Zaaeqa Restaurant. All rights reserved."
columns={[
{
title: "Quick Links", items: [
title: "Dining & Reservations", items: [
{
label: "Home", href: "#hero"},
label: "Reservations", href: "#contact"},
{
label: "About Us", href: "#about"},
label: "Order Online", href: "#contact"},
{
label: "Private Events", href: "#contact"},
{
label: "Business Hours", href: "#contact"}
]
},
{
title: "Explore Zaaeqa", items: [
{
label: "Menu", href: "#signature-dishes"},
{
label: "Gallery", href: "#gallery"},
],
{
label: "About Us", href: "#about"},
{
label: "Why Choose Us", href: "#why-choose-us"},
{
label: "Customer Reviews", href: "#customer-reviews"}
]
},
{
title: "Contact Info", items: [
title: "Connect & Follow", items: [
{
label: "Contact Us", href: "#contact"},
{
label: "Phone: 092629 94101", href: "tel:+919262994101"},
{
label: "Address: Shop No 10, Mauli CHS, Plot No 81, New Sector-50, Sector 50, Seawoods, Navi Mumbai, Maharashtra 400706", href: "https://maps.app.goo.gl/example"},
{
label: "Business Hours: Daily until 11:00 PM", href: "#"},
],
},
{
title: "Follow Us", items: [
{
label: "Facebook", href: "https://facebook.com/zaaeqarestaurant"},
{
label: "Instagram", href: "https://instagram.com/zaaeqarestaurant"},
{
label: "Twitter", href: "https://twitter.com/zaaeqarestaurant"},
],
},
{
title: "Order & Reserve", items: [
{
label: "Order Online", href: "#contact"},
{
label: "Reserve Table", href: "#contact"},
{
label: "WhatsApp Order", href: "https://wa.me/919262994101"},
],
},
label: "Google Reviews", href: "https://g.page/ZaaeqaRestaurant/review"}
]
}
]}
bottomLeftText="© 2024 Zaaeqa Restaurant. All rights reserved."
bottomRightText="Made with passion for food."
/>
</div>
</ReactLenis>