13 Commits

Author SHA1 Message Date
619ea7cc61 Update src/app/terms/page.tsx 2026-05-05 21:47:43 +00:00
7b1a409c20 Update src/app/policy/page.tsx 2026-05-05 21:47:42 +00:00
8e646ed29e Update src/app/terms/page.tsx 2026-05-05 21:38:46 +00:00
a6018f41ed Update src/app/policy/page.tsx 2026-05-05 21:38:46 +00:00
6e5ab7f742 Update src/app/page.tsx 2026-05-05 21:38:17 +00:00
8f89bd60e7 Merge version_5 into main
Merge version_5 into main
2026-05-05 21:37:57 +00:00
b6722b0ba7 Update src/app/terms/page.tsx 2026-05-05 21:37:51 +00:00
c53f4cb98d Update src/app/policy/page.tsx 2026-05-05 21:37:50 +00:00
431552590e Merge version_5 into main
Merge version_5 into main
2026-05-05 21:37:23 +00:00
4c3b4f34a0 Add src/app/terms/page.tsx 2026-05-05 21:37:20 +00:00
b24f093f11 Add src/app/policy/page.tsx 2026-05-05 21:37:20 +00:00
7a8b172dca Update src/app/page.tsx 2026-05-05 21:37:19 +00:00
6fa4dc2dde Merge version_4 into main
Merge version_4 into main
2026-05-05 21:34:39 +00:00
3 changed files with 91 additions and 20 deletions

View File

@@ -31,8 +31,9 @@ export default function ZenithAiPage() {
{ name: "Capabilities", id: "offer" },
{ name: "Pricing", id: "pricing" },
{ name: "Our Vision", id: "founder" },
{ name: "How It Works", id: "works" },
{ name: "FAQ", id: "faq" }
{ name: "FAQ", id: "faq" },
{ name: "Terms", id: "/terms" },
{ name: "Policy", id: "/policy" }
]}
/>
<div id="hero">
@@ -72,9 +73,9 @@ export default function ZenithAiPage() {
useInvertedBackground={false}
plans={[
{
id: "ultimate", title: "Zenith Business Suite", price: "$1500 setup + $750", period: "/mo", button: { text: "Deploy AI Agent" },
id: "ultimate", title: "Zenith Business Suite", price: "$1500 setup + $750", period: "/mo", button: { text: "Deploy AI Agent" },
features: [
"Dedicated AI Voice Agent deployment", "Automated SMS and text lead capture", "Real-time calendar synchronization", "Full-scale booking management dashboard", "Automated proactive calendar audit reports"
"Dedicated AI Voice Agent deployment", "Automated SMS and text lead capture", "Real-time calendar synchronization", "Full-scale booking management dashboard", "Automated proactive calendar audit reports"
]
}
]}
@@ -89,20 +90,6 @@ export default function ZenithAiPage() {
useInvertedBackground={false}
/>
</div>
<div id="works">
<FeatureCardMedia
title="Seamless Implementation"
animationType="none"
description="Transform your operations in three straightforward steps. Our onboarding process ensures your AI agent is optimized and ready to represent your brand professionally."
textboxLayout="default"
useInvertedBackground={false}
features={[
{ id: "s1", title: "1. Infrastructure Connection", description: "Link your existing business communication channels and professional calendars into our secure, unified AI ecosystem.", tag: "Connect" },
{ id: "s2", title: "2. Persona Personalization", description: "Configure the AI agent with your specific business parameters, tone, and logical rules for responding to complex client needs.", tag: "Customize" },
{ id: "s3", title: "3. Automated Execution", description: "Go live with a system that manages, captures, and converts leads while you focus on high-value business strategy.", tag: "Deploy" }
]}
/>
</div>
<div id="faq">
<FaqSplitMedia
title="Intelligence at Scale: Frequently Asked Questions"
@@ -123,8 +110,8 @@ export default function ZenithAiPage() {
logoText="Zenith AI Solutions"
columns={[
{ title: "Capability", items: [{ label: "AI Features", href: "#offer" }, { label: "Deployment Plans", href: "#pricing" }] },
{ title: "Corporate", items: [{ label: "Our Founder's Vision", href: "#founder" }, { label: "Help & Support", href: "#faq" }] },
{ title: "Direct Contact", items: [{ label: "hello@zenith.ai", href: "mailto:hello@zenith.ai" }] }
{ 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" }] }
]}
copyrightText="© 2024 Zenith AI Solutions. All rights reserved."
/>

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>
);
}

42
src/app/terms/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 TermsPage() {
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="Terms & Conditions"
sections={[
{ heading: "Introduction", content: { type: "paragraph", text: "By accessing Zenith AI Solutions, you agree to be bound by these terms." } },
{ heading: "Usage", content: { type: "list", items: ["You shall use the AI service for lawful business purposes only.", "Unauthorized access is strictly prohibited."] } }
]}
/>
<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>
);
}