Update src/app/page.tsx

This commit is contained in:
2026-05-05 21:48:29 +00:00
parent f5ed84c3fb
commit 3c0dd0c876

View File

@@ -31,9 +31,10 @@ 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: "Terms", id: "/terms" },
{ name: "Policy", id: "/policy" }
{ name: "Terms", id: "terms" },
{ name: "Policy", id: "policy" }
]}
/>
<div id="hero">
@@ -73,9 +74,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"
]
}
]}
@@ -90,6 +91,20 @@ 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"
@@ -110,12 +125,12 @@ export default function ZenithAiPage() {
logoText="Zenith AI Solutions"
columns={[
{ title: "Capability", items: [{ label: "AI Features", href: "#offer" }, { label: "Deployment Plans", href: "#pricing" }] },
{ 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" }] }
{ title: "Corporate", items: [{ label: "Our Founder's Vision", href: "#founder" }, { label: "Help & Support", href: "#faq" }, { label: "Terms", href: "/terms" }, { label: "Policy", href: "/policy" }] },
{ title: "Direct Contact", items: [{ label: "hello@zenith.ai", href: "mailto:hello@zenith.ai" }] }
]}
copyrightText="© 2024 Zenith AI Solutions. All rights reserved."
/>
</ReactLenis>
</ThemeProvider>
);
}
}