Update src/app/page.tsx

This commit is contained in:
2026-03-19 10:04:15 +00:00
parent 30a9216571
commit c9a4cd5e8d

View File

@@ -9,7 +9,7 @@ import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix';
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import FooterBase from '@/components/sections/footer/FooterBase';
import { Flame, ChefHat, UtensilsCrossed, Award, Heart, HelpCircle, Star } from 'lucide-react';
export default function LandingPage() {
@@ -253,11 +253,32 @@ export default function LandingPage() {
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
<FooterBase
logoText="Flip N' Fold"
columns={[
{
items: [
title: "Address", items: [
{ label: "13, Brahmand Patlipada Link Rd", href: "#" },
{ label: "Thane West, Maharashtra 400607", href: "#" },
{ label: "Raunak Glory Complex", href: "#" }
]
},
{
title: "Contact", items: [
{ label: "+91 99870 85633", href: "tel:+919987085633" },
{ label: "Open till 11:30 PM", href: "#" },
{ label: "Reserve Table", href: "#contact" }
]
},
{
title: "Social Media", items: [
{ label: "Instagram", href: "https://instagram.com" },
{ label: "WhatsApp", href: "https://wa.me/919987085633" },
{ label: "Follow Us", href: "#" }
]
},
{
title: "Quick Links", items: [
{ label: "Home", href: "#hero" },
{ label: "Menu", href: "#products" },
{ label: "About", href: "#about" },
@@ -265,41 +286,18 @@ export default function LandingPage() {
]
},
{
items: [
title: "Order Online", items: [
{ label: "Order on Swiggy", href: "https://swiggy.com" },
{ label: "Order on Zomato", href: "https://zomato.com" },
{ label: "Reserve Table", href: "#contact" },
{ label: "FAQ", href: "#faq" }
]
},
{
items: [
{ label: "Address", href: "#" },
{ label: "13, Brahmand Patlipada Link Rd", href: "#" },
{ label: "Thane West, Maharashtra 400607", href: "#" },
{ label: "Raunak Glory Complex", href: "#" }
]
},
{
items: [
{ label: "Phone", href: "tel:+919987085633" },
{ label: "+91 99870 85633", href: "tel:+919987085633" },
{ label: "Open till 11:30 PM", href: "#" },
{ label: "Follow Us", href: "#" }
]
},
{
items: [
{ label: "Instagram", href: "https://instagram.com" },
{ label: "WhatsApp", href: "https://wa.me/919987085633" },
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" }
]
}
]}
copyrightText="© 2025 Flip N' Fold | All Rights Reserved"
ariaLabel="Site footer"
/>
</div>
</ThemeProvider>
);
}
}