Update src/app/policy/page.tsx

This commit is contained in:
2026-05-05 21:53:54 +00:00
parent 443e0fe5af
commit e6dbed4ee5

View File

@@ -1,31 +1,42 @@
"use client";
import ReactLenis from "lenis/react";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple";
import LegalSection from "@/components/legal/LegalSection";
import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal";
export default function PolicyPage() {
return (
<ThemeProvider defaultButtonVariant="text-stagger" defaultTextAnimation="entrance-slide" borderRadius="rounded" contentWidth="medium" sizing="medium" background="circleGradient" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="normal">
<NavbarStyleApple
navItems={[
{ name: "Capabilities", id: "offer" },
{ name: "Pricing", id: "pricing" },
{ name: "Our Vision", id: "founder" },
{ name: "How It Works", id: "works" },
{ name: "FAQ", id: "faq" },
{ name: "Terms", id: "terms" },
{ name: "Policy", id: "policy" }
]}
/>
<LegalSection
layout="page"
title="Policy and Procedures"
sections={[
{ heading: "Privacy Policy", content: { type: "paragraph", text: "We protect your data with enterprise-grade encryption. Your personal information is never shared with third-party marketers without consent." } },
{ heading: "Account Procedures", content: { type: "numbered-list", items: ["Account registration requires a professional email.", "Service termination notice period is 30 days.", "Refunds are issued according to our 14-day trial policy."] } }
]}
/>
<ReactLenis root>
<NavbarStyleApple
brandName="Zenith AI Solutions"
navItems={[
{ name: "Capabilities", id: "/#offer" },
{ name: "Pricing", id: "/#pricing" },
{ name: "FAQ", id: "/#faq" },
{ name: "Terms", id: "/terms" },
{ name: "Policy", id: "/policy" }
]}
/>
<LegalSection
layout="page"
title="Policy & Procedures"
sections={[
{ heading: "Data Privacy", content: { type: "paragraph", text: "We prioritize the security of your business communications and client data." } },
{ heading: "Compliance", content: { type: "numbered-list", items: ["Data encryption at rest.", "Regular security audits.", "Incident reporting protocols."] } }
]}
/>
<FooterBaseReveal
logoText="Zenith AI Solutions"
columns={[
{ title: "Navigation", items: [{ label: "Home", href: "/" }] },
{ title: "Legal", items: [{ label: "Terms & Conditions", href: "/terms" }, { label: "Policy & Procedures", href: "/policy" }] },
{ title: "Direct Contact", items: [{ label: "kaianiel25@iCloud.com", href: "mailto:kaianiel25@iCloud.com" }] }
]}
/>
</ReactLenis>
</ThemeProvider>
);
}