diff --git a/src/app/page.tsx b/src/app/page.tsx index af66638..6deba39 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -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" } ]} />
@@ -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} />
-
- -
); -} \ No newline at end of file +} diff --git a/src/app/policy/page.tsx b/src/app/policy/page.tsx new file mode 100644 index 0000000..4ede57d --- /dev/null +++ b/src/app/policy/page.tsx @@ -0,0 +1,41 @@ +"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 ( + + + + + + + + ); +} \ No newline at end of file diff --git a/src/app/terms/page.tsx b/src/app/terms/page.tsx new file mode 100644 index 0000000..fc8a9e8 --- /dev/null +++ b/src/app/terms/page.tsx @@ -0,0 +1,41 @@ +"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 ( + + + + + + + + ); +} \ No newline at end of file