Merge version_3 into main #16

Merged
bender merged 1 commits from version_3 into main 2026-05-17 13:48:10 +00:00

View File

@@ -21,31 +21,36 @@ export default function PrivacyPolicyPage() {
headingFontWeight="normal"
>
<ReactLenis root>
<NavbarLayoutFloatingInline
navItems={[
{ name: "Home", id: "/" },
{ name: "Privacy Policy", id: "/privacy-policy" }
]}
brandName="Velvet Roast"
button={{ text: "Order Now", href: "/#menu" }}
/>
<LegalSection
layout="page"
title="Privacy Policy"
subtitle="Last updated: May 2024"
sections={[
{ heading: "Information We Collect", content: { type: "paragraph", text: "At Velvet Roast, we value your privacy. We collect information you provide directly to us, such as when you create an account, place an order, or subscribe to our newsletter." } },
{ heading: "How We Use Your Data", content: { type: "list", items: ["To process and fulfill your orders", "To communicate with you about your account or orders", "To improve our services and website experience", "To send you marketing materials, with your consent"] } },
{ heading: "Your Rights", content: { type: "paragraph", text: "You have the right to access, correct, or delete your personal data at any time. Please contact us if you have any questions about your data privacy." } }
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{ name: "Home", id: "/" },
{ name: "Privacy Policy", id: "/privacy-policy" }
]}
/>
<FooterLogoEmphasis
logoText="Velvet Roast"
columns={[
{ items: [{ label: "Our Story", href: "/#story" }, { label: "Careers", href: "#" }] },
{ items: [{ label: "Privacy", href: "/privacy-policy" }, { label: "Terms", href: "#" }] }
]}
/>
brandName="Velvet Roast"
/>
</div>
<div id="legal" data-section="legal">
<LegalSection
layout="page"
title="Privacy Policy"
subtitle="Last updated: May 2024"
sections={[
{ heading: "Information We Collect", content: { type: "paragraph", text: "At Velvet Roast, we value your privacy. We collect information you provide directly to us, such as when you create an account, place an order, or subscribe to our newsletter." } },
{ heading: "How We Use Your Data", content: { type: "list", items: ["To process and fulfill your orders", "To communicate with you about your account or orders", "To improve our services and website experience", "To send you marketing materials, with your consent"] } },
{ heading: "Your Rights", content: { type: "paragraph", text: "You have the right to access, correct, or delete your personal data at any time. Please contact us if you have any questions about your data privacy." } }
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
logoText="Velvet Roast"
columns={[
{ items: [{ label: "Our Story", href: "/#story" }, { label: "Careers", href: "#" }] },
{ items: [{ label: "Privacy", href: "/privacy-policy" }, { label: "Terms", href: "#" }] }
]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);