Add src/app/privacy/page.tsx
This commit is contained in:
114
src/app/privacy/page.tsx
Normal file
114
src/app/privacy/page.tsx
Normal file
@@ -0,0 +1,114 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||
import FooterCard from '@/components/sections/footer/FooterCard';
|
||||
import LegalSection from '@/components/legal/LegalSection';
|
||||
import { Award, Facebook, Instagram, MapPin, Rocket, Star, Twitter, Utensils } from "lucide-react";
|
||||
|
||||
export default function PrivacyPage() {
|
||||
const navItems = [
|
||||
{ name: "Home", id: "#hero" },
|
||||
{ name: "Menu", id: "#menu" },
|
||||
{ name: "Features", id: "#features" },
|
||||
{ name: "Pricing", id: "#pricing" },
|
||||
{ name: "Reviews", id: "#testimonials" },
|
||||
{ name: "FAQ", id: "#faq" },
|
||||
{ name: "Contact", id: "#contact" },
|
||||
{ name: "Privacy", id: "/privacy" },
|
||||
];
|
||||
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="expand-hover"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="pill"
|
||||
contentWidth="small"
|
||||
sizing="mediumLarge"
|
||||
background="circleGradient"
|
||||
cardStyle="glass-depth"
|
||||
primaryButtonStyle="shadow"
|
||||
secondaryButtonStyle="solid"
|
||||
headingFontWeight="extrabold"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple
|
||||
navItems={navItems}
|
||||
brandName="Food Paradise"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="privacy-policy" data-section="privacy-policy">
|
||||
<LegalSection
|
||||
layout="page"
|
||||
title="Privacy Policy"
|
||||
subtitle="Last updated: October 26, 2023"
|
||||
sections={[
|
||||
{
|
||||
heading: "Introduction", content: [
|
||||
{ type: "paragraph", text: "Welcome to Food Paradise. We are committed to protecting your privacy and handling your data in a transparent manner. This Privacy Policy explains how we collect, use, disclose, and safeguard your information when you visit our website and use our services." }
|
||||
]
|
||||
},
|
||||
{
|
||||
heading: "Information We Collect", content: [
|
||||
{ type: "paragraph", text: "We collect information that you provide directly to us when you use our services, such as when you create an account, place an order, or contact us. This may include:" },
|
||||
{ type: "list", items: [
|
||||
"Personal Identifiable Information (PII): Name, email address, phone number, delivery address.", "Payment Information: While we do not store full payment card details, we may collect information required to process payments through third-party payment processors (e.g., transaction ID, masked card number).", "Order Details: Information related to your food orders, preferences, and dietary restrictions."
|
||||
]}
|
||||
]
|
||||
},
|
||||
{
|
||||
heading: "How We Use Your Information", content: [
|
||||
{ type: "paragraph", text: "We use the information we collect for various purposes, including:" },
|
||||
{ type: "list", items: [
|
||||
"To provide and maintain our services, including processing orders and deliveries.", "To improve, personalize, and expand our services.", "To communicate with you, respond to inquiries, and provide customer support.", "To send you promotional communications, updates, and offers (you can opt-out at any time).", "To monitor and analyze usage and trends to improve your experience.", "To detect, prevent, and address technical issues and security incidents.", "To comply with legal obligations."
|
||||
]}
|
||||
]
|
||||
},
|
||||
{
|
||||
heading: "Data Security", content: [
|
||||
{ type: "paragraph", text: "We implement a variety of security measures, including JWT authentication, two-factor authentication (2FA), and data encryption, to maintain the safety of your personal information. Your data is stored on secure servers and access is restricted to authorized personnel only. We also regularly back up data to prevent loss." }
|
||||
]
|
||||
},
|
||||
{
|
||||
heading: "Your Data Protection Rights", content: [
|
||||
{ type: "paragraph", text: "Depending on your location, you may have the following rights regarding your personal data:" },
|
||||
{ type: "list", items: [
|
||||
"The right to access – You have the right to request copies of your personal data.", "The right to rectification – You have the right to request that we correct any information you believe is inaccurate or incomplete.", "The right to erasure – You have the right to request that we erase your personal data, under certain conditions.", "The right to restrict processing – You have the right to request that we restrict the processing of your personal data, under certain conditions.", "The right to object to processing – You have the right to object to our processing of your personal data, under certain conditions.", "The right to data portability – You have the right to request that we transfer the data that we have collected to another organization, or directly to you, under certain conditions."
|
||||
]}
|
||||
]
|
||||
},
|
||||
{
|
||||
heading: "Changes to This Privacy Policy", content: [
|
||||
{ type: "paragraph", text: "We may update our Privacy Policy from time to time. We will notify you of any changes by posting the new Privacy Policy on this page. You are advised to review this Privacy Policy periodically for any changes. Changes to this Privacy Policy are effective when they are posted on this page." }
|
||||
]
|
||||
},
|
||||
{
|
||||
heading: "Contact Us", content: [
|
||||
{ type: "paragraph", text: "If you have any questions or concerns about this Privacy Policy, please contact us:" },
|
||||
{ type: "list", items: [
|
||||
"By email: privacy@foodparadise.com", "By phone: +91 12345 67890"
|
||||
]}
|
||||
]
|
||||
}
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterCard
|
||||
logoText="Food Paradise"
|
||||
copyrightText="© 2024 Food Paradise. All rights reserved. | Enhanced Security & Privacy"
|
||||
socialLinks={[
|
||||
{ icon: Facebook, href: "#", ariaLabel: "Facebook" },
|
||||
{ icon: Instagram, href: "#", ariaLabel: "Instagram" },
|
||||
{ icon: Twitter, href: "#", ariaLabel: "Twitter" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user