Update src/app/privacy-policy/page.tsx

This commit is contained in:
2026-05-17 13:45:52 +00:00
parent 384300ad55
commit 2068719574

View File

@@ -2,7 +2,7 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import LegalSection from "@/components/legal/LegalSection";
import LegalSection from '@/components/legal/LegalSection';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
@@ -24,41 +24,26 @@ export default function PrivacyPolicyPage() {
<NavbarLayoutFloatingInline
navItems={[
{ name: "Home", id: "/" },
{ name: "Menu", id: "/" },
{ name: "Story", id: "/" },
{ name: "Experience", id: "/" }
{ name: "Privacy Policy", id: "/privacy-policy" }
]}
brandName="Velvet Roast"
button={{ text: "Order Now" }}
/>
<div className="pt-32 pb-16">
<LegalSection
<LegalSection
layout="page"
title="Privacy Policy"
subtitle="Last updated: January 2025"
subtitle="Last updated: May 2024"
sections={[
{
heading: "Introduction", content: { type: "paragraph", text: "At Velvet Roast, we respect your privacy and are committed to protecting the personal information you share with us. This Privacy Policy explains how we collect, use, and safeguard your data." }
},
{
heading: "Information Collection", content: { type: "list", items: ["Contact details provided during newsletter sign-ups", "Information collected during online orders", "Technical data from website interactions (cookies, IP addresses)"] }
},
{
heading: "Use of Information", content: { type: "paragraph", text: "We use the gathered information to provide, maintain, and improve our services, process orders, and communicate with you about updates and news." }
}
{ 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>
/>
<FooterLogoEmphasis
logoText="Velvet Roast"
columns={[
{
items: [{ label: "Our Story", href: "/" }, { label: "Careers", href: "#" }]
},
{
items: [{ label: "Privacy Policy", href: "/privacy-policy" }, { label: "Terms", href: "#" }]
}
{ items: [{ label: "Our Story", href: "/#story" }, { label: "Careers", href: "#" }] },
{ items: [{ label: "Privacy", href: "/privacy-policy" }, { label: "Terms", href: "#" }] }
]}
/>
</ReactLenis>