11 Commits

Author SHA1 Message Date
d90a6e8d7c Update src/app/terms/page.tsx 2026-05-05 21:48:52 +00:00
13774d411b Update src/app/policy/page.tsx 2026-05-05 21:48:52 +00:00
c619941bfa Update src/app/terms/page.tsx 2026-05-05 21:46:49 +00:00
25b486f5ba Update src/app/policy/page.tsx 2026-05-05 21:46:49 +00:00
556ecca531 Update src/app/page.tsx 2026-05-05 21:46:48 +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
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 67 additions and 3 deletions

View File

@@ -32,7 +32,9 @@ export default function ZenithAiPage() {
{ 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">
@@ -123,7 +125,7 @@ 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: "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."
@@ -131,4 +133,4 @@ export default function ZenithAiPage() {
</ReactLenis>
</ThemeProvider>
);
}
}

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

@@ -0,0 +1,31 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple";
import LegalSection from "@/components/legal/LegalSection";
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."] } }
]}
/>
</ThemeProvider>
);
}

31
src/app/terms/page.tsx Normal file
View File

@@ -0,0 +1,31 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple";
import LegalSection from "@/components/legal/LegalSection";
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">
<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="Terms and Conditions"
sections={[
{ heading: "Acceptance of Terms", content: { type: "paragraph", text: "By accessing Zenith AI Solutions, you agree to these terms. If you do not agree, please discontinue use." } },
{ heading: "Usage Guidelines", content: { type: "list", items: ["Service is for professional business use.", "Do not attempt to reverse engineer our AI.", "Maintain account confidentiality."] } }
]}
/>
</ThemeProvider>
);
}