Compare commits
65 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 36b5379a49 | |||
| 29dfbfeca5 | |||
| b27bbde24d | |||
| 545da22efe | |||
| a4b7c0cee7 | |||
| f08205e724 | |||
| be05ae4dde | |||
| 8549d173ab | |||
| d5338d23b5 | |||
| cef4dd7116 | |||
| 98035b9d79 | |||
| cd859991f4 | |||
| 00d2429acf | |||
| 4aa4b36406 | |||
| bf0845c1f7 | |||
| e6dbed4ee5 | |||
| 443e0fe5af | |||
| 4c28c6e2a7 | |||
| b7d54e442b | |||
| 5759d0d7e4 | |||
| 790ae3ae1a | |||
| 1ba7eeb5f7 | |||
| 290a808c2e | |||
| 46b6a57014 | |||
| b2be958773 | |||
| d90a6e8d7c | |||
| 13774d411b | |||
| fda01ee68e | |||
| 36bc7d9f73 | |||
| 3c0dd0c876 | |||
| f5ed84c3fb | |||
| 619ea7cc61 | |||
| 7b1a409c20 | |||
| 97004fd550 | |||
| 0bedc5e665 | |||
| c619941bfa | |||
| 25b486f5ba | |||
| 556ecca531 | |||
| e6b30f55e5 | |||
| 6220c37d42 | |||
| 86f1a01187 | |||
| db0c756393 | |||
| 9aafa00d5a | |||
| 1ec79ca6dd | |||
| f29a3c6ab3 | |||
| 9965143d0c | |||
| d6c38fbc7f | |||
| 77b0669591 | |||
| e4a58ceb66 | |||
| a7171222d9 | |||
| 7985c8ead2 | |||
| 76820c4bb6 | |||
| ce7be8c86f | |||
| 8e646ed29e | |||
| a6018f41ed | |||
| cb3853a7ef | |||
| 6e5ab7f742 | |||
| 8f89bd60e7 | |||
| b6722b0ba7 | |||
| c53f4cb98d | |||
| 431552590e | |||
| 4c3b4f34a0 | |||
| b24f093f11 | |||
| 7a8b172dca | |||
| 6fa4dc2dde |
@@ -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
31
src/app/policy/page.tsx
Normal 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
31
src/app/terms/page.tsx
Normal 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>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user