1 Commits

Author SHA1 Message Date
c0df4b1dd4 Update src/app/privacy-policy/page.tsx 2026-04-28 03:29:34 +00:00
2 changed files with 11 additions and 8 deletions

View File

@@ -33,9 +33,9 @@ export default function LandingPage() {
navItems={[ navItems={[
{ name: "Menu", id: "menu" }, { name: "Menu", id: "menu" },
{ name: "Deals", id: "deals" }, { name: "Deals", id: "deals" },
{ name: "Locations", id: "locations" },
{ name: "App", id: "app" }, { name: "App", id: "app" },
{ name: "FAQ", id: "faq" }, { name: "Privacy Policy", id: "/privacy-policy" }
{ name: "Contact", id: "contact" }
]} ]}
brandName="FastBite" brandName="FastBite"
/> />
@@ -44,10 +44,10 @@ export default function LandingPage() {
<div id="hero" data-section="hero"> <div id="hero" data-section="hero">
<HeroLogo <HeroLogo
logoText="FastBite:skip the wait ,start the feast" 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={[ buttons={[
{ text: "Order Now", href: "#menu" }, { text: "Order Now", href: "#menu" },
{ text: "Join Rewards", href: "#contact" }, { text: "Find a Location", href: "#locations" },
]} ]}
buttonAnimation="slide-up" 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" 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 +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" }, { 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" title="Loved by Foodies"
description="Connect with us on social media for exclusive drops." description="What our hungry customers say."
/> />
</div> </div>

View File

@@ -37,13 +37,16 @@ export default function PrivacyPolicyPage() {
subtitle="Last updated: May 2024" subtitle="Last updated: May 2024"
sections={[ sections={[
{ {
heading: "Information We Collect", content: { type: "paragraph", text: "We collect information you provide directly to us, including your name, email address, phone number, and delivery address when you place an order." } heading: "Information We Collect",
content: { type: "paragraph", text: "We collect information you provide directly to us, including your name, email address, phone number, and delivery address when you place an order." }
}, },
{ {
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: "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: "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"] }
} }
]} ]}
/> />