Switch to version 4: modified src/app/page.tsx

This commit is contained in:
2026-04-28 03:34:26 +00:00
parent c8ff9c1e63
commit dfb58c571f

View File

@@ -5,13 +5,12 @@ import ReactLenis from "lenis/react";
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
import FeatureCardOne from '@/components/sections/feature/FeatureCardOne';
import FooterCard from '@/components/sections/footer/FooterCard';
import FooterSimple from '@/components/sections/footer/FooterSimple';
import HeroLogo from '@/components/sections/hero/HeroLogo';
import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout';
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import ProductCardOne from '@/components/sections/product/ProductCardOne';
import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne';
import { Instagram, Twitter, Facebook } from "lucide-react";
export default function LandingPage() {
return (
@@ -33,9 +32,9 @@ export default function LandingPage() {
navItems={[
{ name: "Menu", id: "menu" },
{ name: "Deals", id: "deals" },
{ name: "Locations", id: "locations" },
{ name: "App", id: "app" },
{ name: "FAQ", id: "faq" },
{ name: "Contact", id: "contact" }
{ name: "Privacy Policy", id: "/privacy-policy" }
]}
brandName="FastBite"
/>
@@ -44,10 +43,10 @@ export default function LandingPage() {
<div id="hero" data-section="hero">
<HeroLogo
logoText="FastBite:skip the wait ,start the feast"
description="Iconic flavor, delivered in seconds. Grab the best deals in your city today."
description="Iconic flavor, delivered in seconds. Grab the best deals in your city today by chef med lgraid."
buttons={[
{ text: "Order Now", href: "#menu" },
{ text: "Join Rewards", href: "#contact" },
{ text: "Find a Location", href: "#locations" },
]}
buttonAnimation="slide-up"
imageSrc="http://img.b2bpic.net/free-photo/tasty-sandwich-red-fork-wooden-board-dark-mix-color-surface-with-free-space_179666-42255.jpg"
@@ -118,7 +117,7 @@ export default function LandingPage() {
{ id: "t5", name: "Ethan W.", role: "Dev", company: "Tech", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/young-woman-eating-burger-fast-food-cheat-meal-woman-burger-restaurant_169016-67452.jpg" },
]}
title="Loved by Foodies"
description="Connect with us on social media for exclusive drops."
description="What our hungry customers say."
/>
</div>
@@ -154,17 +153,16 @@ export default function LandingPage() {
</div>
<div id="footer" data-section="footer">
<FooterCard
logoText="FastBite"
copyrightText="© 2025 | FastBite"
socialLinks={[
{ icon: Instagram, href: "#", ariaLabel: "Instagram" },
{ icon: Twitter, href: "#", ariaLabel: "Twitter" },
{ icon: Facebook, href: "#", ariaLabel: "Facebook" }
<FooterSimple
columns={[
{ title: "Support", items: [{ label: "FAQ", href: "#faq" }, { label: "Contact", href: "#contact" }] },
{ title: "Brand", items: [{ label: "About Us", href: "#about" }, { label: "Careers", href: "#" }] },
]}
bottomLeftText="© 2024 FastBite Brand."
bottomRightText="Privacy Policy"
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}