Add src/app/privacy/page.tsx
This commit is contained in:
149
src/app/privacy/page.tsx
Normal file
149
src/app/privacy/page.tsx
Normal file
@@ -0,0 +1,149 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import LegalSection from '@/components/legal/LegalSection';
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
||||
|
||||
export default function PrivacyPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="hover-magnetic"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="rounded"
|
||||
contentWidth="smallMedium"
|
||||
sizing="largeSmallSizeMediumTitles"
|
||||
background="aurora"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="diagonal-gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="light"
|
||||
>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
brandName="Caribou Coffee"
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "About", id: "#about" },
|
||||
{ name: "Contact", id: "#contact" }
|
||||
]}
|
||||
button={{ text: "Get Directions", href: "https://maps.google.com/?q=24.24235,55.700408" }}
|
||||
animateOnLoad={true}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="privacy" data-section="privacy">
|
||||
<LegalSection
|
||||
layout="page"
|
||||
title="Privacy Policy"
|
||||
subtitle="Last updated: January 2025"
|
||||
sections={[
|
||||
{
|
||||
heading: "1. Information We Collect", content: [
|
||||
{
|
||||
type: "paragraph", text: "Caribou Coffee collects information you provide directly to us, including:"
|
||||
},
|
||||
{
|
||||
type: "list", items: [
|
||||
"Email addresses for newsletter subscriptions", "Contact information for reservations and inquiries", "Payment information for purchases", "Feedback and reviews about our services"
|
||||
]
|
||||
},
|
||||
{
|
||||
type: "paragraph", text: "We also collect information automatically when you visit our location or website, including device information and usage patterns."
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
heading: "2. How We Use Your Information", content: [
|
||||
{
|
||||
type: "paragraph", text: "We use the information we collect to:"
|
||||
},
|
||||
{
|
||||
type: "list", items: [
|
||||
"Provide and improve our services", "Send newsletters and promotional offers", "Process reservations and orders", "Respond to your inquiries and feedback", "Ensure the security and functionality of our services"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
heading: "3. Data Security", content: [
|
||||
{
|
||||
type: "paragraph", text: "We implement appropriate technical and organizational measures to protect your personal information against unauthorized access, alteration, disclosure, or destruction. However, no method of transmission over the internet is 100% secure."
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
heading: "4. Third-Party Sharing", content: [
|
||||
{
|
||||
type: "paragraph", text: "We do not sell, trade, or rent your personal information to third parties. We may share information with service providers who assist us in operating our website and conducting our business, subject to confidentiality agreements."
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
heading: "5. Your Rights", content: [
|
||||
{
|
||||
type: "paragraph", text: "You have the right to:"
|
||||
},
|
||||
{
|
||||
type: "list", items: [
|
||||
"Access the personal information we hold about you", "Request correction of inaccurate information", "Request deletion of your information", "Unsubscribe from marketing communications at any time"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
heading: "6. Changes to This Privacy Policy", content: [
|
||||
{
|
||||
type: "paragraph", text: "We may update this Privacy Policy from time to time to reflect changes in our practices or for other operational, legal, or regulatory reasons. We will notify you of any material changes by posting the updated policy on our website."
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
heading: "7. Contact Us", content: [
|
||||
{
|
||||
type: "paragraph", text: "If you have questions about this Privacy Policy or our privacy practices, please contact us at:"
|
||||
},
|
||||
{
|
||||
type: "list", items: [
|
||||
"Phone: +971 3 755 6364", "Email: privacy@cariboucoffee.ae", "Location: Taweah Park, Al Ain, UAE"
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoEmphasis
|
||||
logoText="Caribou Coffee"
|
||||
columns={[
|
||||
{
|
||||
items: [
|
||||
{ label: "Menu", href: "/" },
|
||||
{ label: "About", href: "/" },
|
||||
{ label: "Reviews", href: "/" },
|
||||
{ label: "Contact", href: "/" }
|
||||
]
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{ label: "Get Directions", href: "https://maps.google.com/?q=24.24235,55.700408" },
|
||||
{ label: "Call: +971 3 755 6364", href: "tel:+97137556364" },
|
||||
{ label: "Location: Taweah Park", href: "https://maps.google.com/?q=24.24235,55.700408" },
|
||||
{ label: "Hours: 7 AM - 12 AM", href: "#" }
|
||||
]
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{ label: "FAQ", href: "/" },
|
||||
{ label: "Privacy Policy", href: "/privacy" },
|
||||
{ label: "Careers", href: "#" }
|
||||
]
|
||||
}
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user