Add src/app/policy/page.tsx

This commit is contained in:
2026-05-05 21:58:04 +00:00
parent f08205e724
commit a4b7c0cee7

42
src/app/policy/page.tsx Normal file
View File

@@ -0,0 +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">
<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>
);
}