Switch to version 2: modified src/app/privacy/page.tsx
This commit is contained in:
@@ -1,8 +1,9 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import LegalSection from "@/components/legal/LegalSection";
|
||||
import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen";
|
||||
import LegalSection from '@/components/legal/LegalSection';
|
||||
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
||||
import FooterMedia from '@/components/sections/footer/FooterMedia';
|
||||
|
||||
export default function PrivacyPolicyPage() {
|
||||
return (
|
||||
@@ -22,34 +23,43 @@ export default function PrivacyPolicyPage() {
|
||||
<NavbarStyleFullscreen
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Privacy", id: "/privacy" },
|
||||
{ name: "Features", id: "/#features" },
|
||||
{ name: "Services", id: "/#services" },
|
||||
{ name: "Pricing", id: "/#pricing" },
|
||||
{ name: "Contact", id: "/#contact" },
|
||||
{ name: "Privacy Policy", id: "/privacy" }
|
||||
]}
|
||||
brandName="TemizEv"
|
||||
/>
|
||||
</div>
|
||||
<LegalSection
|
||||
layout="page"
|
||||
title="Privacy Policy"
|
||||
subtitle="Your privacy matters to us at TemizEv"
|
||||
sections={[
|
||||
{
|
||||
heading: "Information We Collect", content: [
|
||||
{ type: "paragraph", text: "We collect information you provide directly to us, such as when you create an account, request a cleaning service, or contact us for support. This may include your name, email address, phone number, and physical address." }
|
||||
]
|
||||
},
|
||||
{
|
||||
heading: "How We Use Your Information", content: [
|
||||
{ type: "paragraph", text: "We use the collected information to:" },
|
||||
{ type: "list", items: ["Provide, maintain, and improve our cleaning services.", "Process your transactions and send related information.", "Communicate with you about bookings, updates, and promotions."] }
|
||||
]
|
||||
},
|
||||
{
|
||||
heading: "Data Protection", content: [
|
||||
{ type: "paragraph", text: "We implement appropriate security measures to protect your personal information in accordance with local regulations in Turkey. We do not sell your personal data to third parties." }
|
||||
]
|
||||
}
|
||||
]}
|
||||
/>
|
||||
<div className="pt-32 pb-20">
|
||||
<LegalSection
|
||||
layout="page"
|
||||
title="Privacy Policy"
|
||||
subtitle="Last updated: May 2024"
|
||||
sections={[
|
||||
{
|
||||
heading: "Information We Collect", content: { type: "paragraph", text: "We collect information you provide directly to us when you contact us or book our services, including name, email, and phone number." }
|
||||
},
|
||||
{
|
||||
heading: "How We Use Your Information", content: { type: "list", items: ["To provide and maintain our cleaning services", "To notify you about changes to our services", "To respond to your inquiries and support requests"] }
|
||||
},
|
||||
{
|
||||
heading: "Data Protection", content: { type: "paragraph", text: "We implement appropriate security measures to protect your personal information from unauthorized access, alteration, or destruction." }
|
||||
}
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
logoText="TemizEv"
|
||||
videoSrc="https://videos.pexels.com/video-files/3196306/3196306-sd_506_960_25fps.mp4"
|
||||
columns={[
|
||||
{ title: "Company", items: [{ label: "About Us", href: "#" }, { label: "Careers", href: "#" }] },
|
||||
{ title: "Legal", items: [{ label: "Privacy Policy", href: "/privacy" }, { label: "Terms", href: "#" }] }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user