Update src/app/privacy/page.tsx

This commit is contained in:
2026-05-10 01:27:23 +00:00
parent c10e7d665f
commit 36d3c87e09

View File

@@ -1,63 +1,49 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import LegalSection from '@/components/legal/LegalSection';
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import FooterMedia from '@/components/sections/footer/FooterMedia';
export default function PrivacyPage() {
export default function PrivacyPolicyPage() {
return (
<ThemeProvider
defaultButtonVariant="icon-arrow"
defaultTextAnimation="entrance-slide"
borderRadius="pill"
contentWidth="small"
sizing="largeSmallSizeMediumTitles"
background="blurBottom"
cardStyle="glass-depth"
primaryButtonStyle="primary-glow"
secondaryButtonStyle="glass"
headingFontWeight="normal"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<ThemeProvider>
<NavbarStyleFullscreen
navItems={[
{ name: "Home", id: "/" },
{ name: "Features", id: "/#features" },
{ name: "Services", id: "/#services" },
{ name: "Pricing", id: "/#pricing" },
{ name: "Contact", id: "/#contact" },
{ name: "Privacy Policy", id: "/privacy" }
]}
brandName="TemizEv"
/>
</div>
<div className="pt-32 pb-16">
<div className="pt-32 pb-20">
<LegalSection
layout="page"
title="Privacy Policy"
subtitle="Last updated: 2024"
subtitle="Last updated: May 2024"
sections={[
{
heading: "Data Collection", content: { type: "paragraph", text: "We collect information you provide directly to us when requesting a quote or booking a service." }
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 our cleaning services", "To process your bookings", "To communicate with you about your appointment"] }
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
imageSrc="http://img.b2bpic.net/free-photo/bushes-lavender-courtyard_627829-14110.jpg"
logoText="TemizEv"
columns={[
{ title: "Company", items: [{ label: "About Us", href: "#" }] },
{ title: "Legal", items: [{ label: "Privacy Policy", href: "/privacy" }] }
{ title: "Company", items: [{ label: "About Us", href: "#" }, { label: "Careers", href: "#" }] },
{ title: "Legal", items: [{ label: "Privacy Policy", href: "/privacy" }, { label: "Terms", href: "#" }] }
]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}