Update src/app/page.tsx

This commit is contained in:
2026-05-14 06:11:45 +00:00
parent 85ce3c913d
commit aebf0d3576

View File

@@ -5,7 +5,7 @@ import ReactLenis from "lenis/react";
import ContactCTA from '@/components/sections/contact/ContactCTA';
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
import FeatureBorderGlow from '@/components/sections/feature/featureBorderGlow/FeatureBorderGlow';
import FooterMedia from '@/components/sections/footer/FooterMedia';
import FooterSimple from '@/components/sections/footer/FooterSimple';
import HeroSplitDualMedia from '@/components/sections/hero/HeroSplitDualMedia';
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
@@ -192,33 +192,26 @@ export default function LandingPage() {
</div>
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/senior-people-having-fun-party_23-2149299023.jpg"
logoText="Cheezy Bite"
<FooterSimple
columns={[
{
title: "Navigation", items: [
{
label: "Home", href: "#hero"},
{
label: "About", href: "#about"},
{
label: "Menu", href: "#menu"},
{
label: "Contact", href: "#contact"},
{ label: "Home", href: "#hero" },
{ label: "About", href: "#about" },
{ label: "Menu", href: "#menu" },
{ label: "Contact", href: "#contact" },
],
},
{
title: "Resources", items: [
{
label: "FAQ", href: "#faq"},
{
label: "Privacy Policy", href: "#"},
{
label: "Terms of Service", href: "#"},
{ label: "FAQ", href: "#faq" },
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" },
],
},
]}
bottomLeftText="© 2025 | Cheezy Bite"
bottomRightText="Crafted with love"
/>
</div>
</ReactLenis>