10 Commits

Author SHA1 Message Date
e6ea3595fa Update src/app/privacy-policy/page.tsx 2026-04-28 03:36:44 +00:00
568c308dcf Update src/app/privacy-policy/page.tsx 2026-04-28 03:36:08 +00:00
042c81bfd2 Update src/app/page.tsx 2026-04-28 03:29:25 +00:00
bfa8c4c24a Merge version_5 into main
Merge version_5 into main
2026-04-28 03:29:11 +00:00
f3ccd10247 Update src/app/privacy-policy/page.tsx 2026-04-28 03:29:07 +00:00
3397f4e75f Merge version_5 into main
Merge version_5 into main
2026-04-28 03:28:40 +00:00
167ff6c70a Update src/app/privacy-policy/page.tsx 2026-04-28 03:28:34 +00:00
0287862952 Merge version_5 into main
Merge version_5 into main
2026-04-28 03:28:07 +00:00
7d683dcb3d Update src/app/page.tsx 2026-04-28 03:28:04 +00:00
311b84c821 Merge version_4 into main
Merge version_4 into main
2026-04-28 03:23:36 +00:00
2 changed files with 17 additions and 15 deletions

View File

@@ -5,12 +5,13 @@ 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 FooterSimple from '@/components/sections/footer/FooterSimple';
import FooterCard from '@/components/sections/footer/FooterCard';
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 (
@@ -32,9 +33,9 @@ export default function LandingPage() {
navItems={[
{ name: "Menu", id: "menu" },
{ name: "Deals", id: "deals" },
{ name: "Locations", id: "locations" },
{ name: "App", id: "app" },
{ name: "Privacy Policy", id: "/privacy-policy" }
{ name: "FAQ", id: "faq" },
{ name: "Contact", id: "contact" }
]}
brandName="FastBite"
/>
@@ -43,10 +44,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 by chef med lgraid."
description="Iconic flavor, delivered in seconds. Grab the best deals in your city today."
buttons={[
{ text: "Order Now", href: "#menu" },
{ text: "Find a Location", href: "#locations" },
{ text: "Join Rewards", href: "#contact" },
]}
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"
@@ -117,7 +118,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="What our hungry customers say."
description="Connect with us on social media for exclusive drops."
/>
</div>
@@ -153,16 +154,17 @@ export default function LandingPage() {
</div>
<div id="footer" data-section="footer">
<FooterSimple
columns={[
{ title: "Support", items: [{ label: "FAQ", href: "#faq" }, { label: "Contact", href: "#contact" }] },
{ title: "Brand", items: [{ label: "About Us", href: "#about" }, { label: "Careers", href: "#" }] },
<FooterCard
logoText="FastBite"
copyrightText="© 2025 | FastBite"
socialLinks={[
{ icon: Instagram, href: "#", ariaLabel: "Instagram" },
{ icon: Twitter, href: "#", ariaLabel: "Twitter" },
{ icon: Facebook, href: "#", ariaLabel: "Facebook" }
]}
bottomLeftText="© 2024 FastBite Brand."
bottomRightText="Privacy Policy"
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}

View File

@@ -43,7 +43,7 @@ export default function PrivacyPolicyPage() {
heading: "How We Use Your Data", content: { type: "list", items: ["To process and deliver your orders", "To communicate about your order status", "To send you promotional offers and updates", "To improve our service and platform"] }
},
{
heading: "Your Rights", content: { type: "numbered-list", items: ["The right to access your personal data", "The right to request correction of your data", "The right to request deletion of your data"] }
heading: "Your Rights", content: { type: "list", items: ["The right to access your personal data", "The right to request correction of your data", "The right to request deletion of your data"] }
}
]}
/>
@@ -58,4 +58,4 @@ export default function PrivacyPolicyPage() {
</ReactLenis>
</ThemeProvider>
);
}
}