Merge version_4 into main #14

Merged
bender merged 1 commits from version_4 into main 2026-04-28 03:37:54 +00:00

View File

@@ -21,38 +21,41 @@ export default function PrivacyPolicyPage() {
headingFontWeight="normal"
>
<ReactLenis root>
<NavbarLayoutFloatingOverlay
navItems={[
{ name: "Menu", id: "/#menu" },
{ name: "Deals", id: "/#deals" },
{ name: "Locations", id: "/#locations" },
{ name: "App", id: "/#app" },
{ name: "Privacy", id: "/privacy-policy" },
]}
brandName="FastBite"
/>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
navItems={[
{ name: "Home", id: "/" },
{ name: "Privacy", id: "/privacy-policy" },
]}
brandName="FastBite"
/>
</div>
<LegalSection
layout="page"
title="Privacy Policy"
sections={[
{
heading: "Data Collection", content: { type: "paragraph", text: "We collect information you provide directly to us when you make an order or contact support." }
},
{
heading: "How We Use Your Data", content: { type: "paragraph", text: "We use your data to process orders, improve our service, and communicate with you." }
},
{
heading: "Your Rights", content: { type: "list", items: ["Right to access your data", "Right to delete your account", "Right to opt-out of marketing"] }
}
]}
/>
<div id="legal" data-section="legal">
<LegalSection
layout="page"
title="Privacy Policy"
sections={[
{
heading: "Data Collection", content: { type: "paragraph", text: "We collect information you provide directly to us when you make an order or contact support." }
},
{
heading: "How We Use Your Data", content: { type: "paragraph", text: "We use your data to process orders, improve our service, and communicate with you." }
},
{
heading: "Your Rights", content: { type: "list", items: ["Right to access your data", "Right to delete your account", "Right to opt-out of marketing"] }
}
]}
/>
</div>
<FooterSimple
columns={[]}
bottomLeftText="© 2024 FastBite Brand."
bottomRightText="Privacy Policy"
/>
<div id="footer" data-section="footer">
<FooterSimple
columns={[]}
bottomLeftText="© 2024 FastBite Brand."
bottomRightText="Privacy Policy"
/>
</div>
</ReactLenis>
</ThemeProvider>
);