Update src/app/privacy/page.tsx

This commit is contained in:
2026-05-10 01:28:19 +00:00
parent 18780eb524
commit 5b5a7fd4ba

View File

@@ -19,17 +19,19 @@ export default function PrivacyPolicyPage() {
secondaryButtonStyle="glass"
headingFontWeight="normal"
>
<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 id="nav" data-section="nav">
<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-20">
<LegalSection
layout="page"
@@ -48,14 +50,16 @@ export default function PrivacyPolicyPage() {
]}
/>
</div>
<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 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>
);
}