Merge version_5 into main #7
@@ -14,7 +14,9 @@ export default function AboutPage() {
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Features", id: "/features" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Contact", id: "/contact" }
|
||||
{ name: "Contact", id: "/contact" },
|
||||
{ name: "Privacy Policy", id: "/privacy-policy" },
|
||||
{ name: "Terms of Service", id: "/terms" }
|
||||
];
|
||||
|
||||
const navbarProps = {
|
||||
@@ -99,4 +101,4 @@ export default function AboutPage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -13,7 +13,9 @@ export default function ContactPage() {
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Features", id: "/features" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Contact", id: "/contact" }
|
||||
{ name: "Contact", id: "/contact" },
|
||||
{ name: "Privacy Policy", id: "/privacy-policy" },
|
||||
{ name: "Terms of Service", id: "/terms" }
|
||||
];
|
||||
|
||||
return (
|
||||
@@ -97,4 +99,4 @@ export default function ContactPage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -15,7 +15,9 @@ export default function FeaturesPage() {
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Features", id: "/features" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Contact", id: "/contact" }
|
||||
{ name: "Contact", id: "/contact" },
|
||||
{ name: "Privacy Policy", id: "/privacy-policy" },
|
||||
{ name: "Terms of Service", id: "/terms" }
|
||||
];
|
||||
|
||||
return (
|
||||
@@ -111,4 +113,4 @@ export default function FeaturesPage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
100
src/app/privacy-policy/page.tsx
Normal file
100
src/app/privacy-policy/page.tsx
Normal file
@@ -0,0 +1,100 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered";
|
||||
import LegalSection from "@/components/legal/LegalSection";
|
||||
import FooterCard from "@/components/sections/footer/FooterCard";
|
||||
import { Twitter, Linkedin, Github } from 'lucide-react';
|
||||
|
||||
export default function PrivacyPolicyPage() {
|
||||
const navItems = [
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Features", id: "/features" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
{ name: "Privacy Policy", id: "/privacy-policy" },
|
||||
{ name: "Terms of Service", id: "/terms" }
|
||||
];
|
||||
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="text-shift"
|
||||
defaultTextAnimation="reveal-blur"
|
||||
borderRadius="rounded"
|
||||
contentWidth="small"
|
||||
sizing="medium"
|
||||
cardStyle="outline"
|
||||
headingFontWeight="normal"
|
||||
background="circleGradient"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleCentered
|
||||
navItems={navItems}
|
||||
button={{
|
||||
text: "Get Started", href: "/contact"
|
||||
}}
|
||||
brandName="SynapseAI"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="privacy-policy" data-section="privacy-policy">
|
||||
<LegalSection
|
||||
layout="page"
|
||||
title="Privacy Policy"
|
||||
subtitle="Last updated: April 23, 2024"
|
||||
sections={[
|
||||
{
|
||||
heading: "1. Introduction", content: [
|
||||
{ type: "paragraph", text: "Welcome to SynapseAI. We are committed to protecting your privacy and ensuring the security of your personal information. This Privacy Policy explains how we collect, use, disclose, and safeguard your information when you visit our website www.synapseai.com (the 'Site') and use our services." },
|
||||
{ type: "paragraph", text: "Please read this Privacy Policy carefully. If you do not agree with the terms of this Privacy Policy, please do not access the Site or use our services." }
|
||||
]
|
||||
},
|
||||
{
|
||||
heading: "2. Information We Collect", content: [
|
||||
{ type: "paragraph", text: "We may collect personal information from you in a variety of ways, including, but not limited to, when you visit our Site, register on the Site, place an order, subscribe to a newsletter, respond to a survey, fill out a form, and in connection with other activities, services, features, or resources we make available on our Site. The types of information we may collect include:" },
|
||||
{ type: "list", items: ["Personal Identifiable Information (PII): Name, email address, mailing address, phone number, and other similar contact data.", "Financial Data: Payment method information (e.g., valid credit card number, card brand, expiration date) that you provide when you purchase, order, return, exchange, or request information about our services from the Site.", "Derivative Data: Information our servers automatically collect when you access the Site, such as your IP address, browser type, operating system, access times, and the pages you have viewed directly before and after accessing the Site.", "Mobile Device Data: Device information, such as your mobile device ID, model, and manufacturer, and information about the location of your device, if you access the Site from a mobile device."] }
|
||||
]
|
||||
},
|
||||
{
|
||||
heading: "3. How We Use Your Information", content: [
|
||||
{ type: "paragraph", text: "Having accurate information about you permits us to provide you with a smooth, efficient, and customized experience. Specifically, we may use information collected about you via the Site to:" },
|
||||
{ type: "numbered-list", items: ["Create and manage your account.", "Process your transactions and send related information, including purchase confirmations and invoices.", "Email you regarding your account or order.", "Enable user-to-user communications.", "Generate a personal profile about you to make your visit to the Site more personalized.", "Increase the efficiency and operation of the Site.", "Monitor and analyze usage and trends to improve your experience with the Site.", "Notify you of updates to the Site.", "Perform other business activities as needed."] }
|
||||
]
|
||||
},
|
||||
{
|
||||
heading: "4. Disclosure of Your Information", content: [
|
||||
{ type: "paragraph", text: "We may share information we have collected about you in certain situations. Your information may be disclosed as follows:" },
|
||||
{ type: "list", items: ["By Law or to Protect Rights: If we believe the release of information about you is necessary to respond to legal process, to investigate or remedy potential violations of our policies, or to protect the rights, property, and safety of others, we may share your information as permitted or required by any applicable law, rule, or regulation.", "Third-Party Service Providers: We may share your information with third parties that perform services for us or on our behalf, including payment processing, data analysis, email delivery, hosting services, customer service, and marketing assistance.", "Marketing Communications: With your consent, or with an opportunity for you to withdraw consent, we may share your information with third parties for marketing purposes, as permitted by law."] }
|
||||
]
|
||||
},
|
||||
{
|
||||
heading: "5. Security of Your Information", content: [
|
||||
{ type: "paragraph", text: "We use administrative, technical, and physical security measures to help protect your personal information. While we have taken reasonable steps to secure the personal information you provide to us, please be aware that despite our efforts, no security measures are perfect or impenetrable, and no method of data transmission can be guaranteed against any interception or other type of misuse." }
|
||||
]
|
||||
},
|
||||
{
|
||||
heading: "6. Contact Us", content: [
|
||||
{ type: "paragraph", text: "If you have questions or comments about this Privacy Policy, please contact us at: info@synapseai.com" }
|
||||
]
|
||||
}
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterCard
|
||||
logoText="SynapseAI"
|
||||
copyrightText="© 2025 SynapseAI. All rights reserved."
|
||||
socialLinks={[
|
||||
{ icon: Twitter, href: "https://twitter.com/synapseai", ariaLabel: "Twitter" },
|
||||
{ icon: Linkedin, href: "https://linkedin.com/company/synapseai", ariaLabel: "LinkedIn" },
|
||||
{ icon: Github, href: "https://github.com/synapseai", ariaLabel: "GitHub" }
|
||||
]}
|
||||
ariaLabel="Site footer for SynapseAI"
|
||||
/>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
104
src/app/terms/page.tsx
Normal file
104
src/app/terms/page.tsx
Normal file
@@ -0,0 +1,104 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered";
|
||||
import LegalSection from "@/components/legal/LegalSection";
|
||||
import FooterCard from "@/components/sections/footer/FooterCard";
|
||||
import { Twitter, Linkedin, Github } from 'lucide-react';
|
||||
|
||||
export default function TermsPage() {
|
||||
const navItems = [
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Features", id: "/features" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
{ name: "Privacy Policy", id: "/privacy-policy" },
|
||||
{ name: "Terms of Service", id: "/terms" }
|
||||
];
|
||||
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="text-shift"
|
||||
defaultTextAnimation="reveal-blur"
|
||||
borderRadius="rounded"
|
||||
contentWidth="small"
|
||||
sizing="medium"
|
||||
cardStyle="outline"
|
||||
headingFontWeight="normal"
|
||||
background="circleGradient"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleCentered
|
||||
navItems={navItems}
|
||||
button={{
|
||||
text: "Get Started", href: "/contact"
|
||||
}}
|
||||
brandName="SynapseAI"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="terms" data-section="terms">
|
||||
<LegalSection
|
||||
layout="page"
|
||||
title="Terms of Service"
|
||||
subtitle="Effective Date: April 23, 2024"
|
||||
sections={[
|
||||
{
|
||||
heading: "1. Acceptance of Terms", content: [
|
||||
{ type: "paragraph", text: "By accessing and using the SynapseAI website (the 'Site') and its services, you agree to comply with and be bound by these Terms of Service ('Terms'). If you do not agree to these Terms, you may not use the Site or services." }
|
||||
]
|
||||
},
|
||||
{
|
||||
heading: "2. Changes to Terms", content: [
|
||||
{ type: "paragraph", text: "We reserve the right to modify or replace these Terms at any time. We will provide notice of any material changes by posting the new Terms on the Site. Your continued use of the Site after any such changes constitutes your acceptance of the new Terms." }
|
||||
]
|
||||
},
|
||||
{
|
||||
heading: "3. User Accounts", content: [
|
||||
{ type: "paragraph", text: "When you create an account with us, you must provide information that is accurate, complete, and current at all times. Failure to do so constitutes a breach of the Terms, which may result in immediate termination of your account on our Service." },
|
||||
{ type: "paragraph", text: "You are responsible for safeguarding the password that you use to access the Service and for any activities or actions under your password. You agree not to disclose your password to any third party. You must notify us immediately upon becoming aware of any breach of security or unauthorized use of your account." }
|
||||
]
|
||||
},
|
||||
{
|
||||
heading: "4. Intellectual Property", content: [
|
||||
{ type: "paragraph", text: "The Service and its original content, features, and functionality are and will remain the exclusive property of SynapseAI and its licensors. The Service is protected by copyright, trademark, and other laws of both the United States and foreign countries." },
|
||||
{ type: "paragraph", text: "Our trademarks and trade dress may not be used in connection with any product or service without the prior written consent of SynapseAI." }
|
||||
]
|
||||
},
|
||||
{
|
||||
heading: "5. Termination", content: [
|
||||
{ type: "paragraph", text: "We may terminate or suspend your account immediately, without prior notice or liability, for any reason whatsoever, including without limitation if you breach the Terms." },
|
||||
{ type: "paragraph", text: "Upon termination, your right to use the Service will immediately cease." }
|
||||
]
|
||||
},
|
||||
{
|
||||
heading: "6. Governing Law", content: [
|
||||
{ type: "paragraph", text: "These Terms shall be governed and construed in accordance with the laws of [Your Jurisdiction], without regard to its conflict of law provisions." }
|
||||
]
|
||||
},
|
||||
{
|
||||
heading: "7. Contact Us", content: [
|
||||
{ type: "paragraph", text: "If you have any questions about these Terms, please contact us at: info@synapseai.com" }
|
||||
]
|
||||
}
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterCard
|
||||
logoText="SynapseAI"
|
||||
copyrightText="© 2025 SynapseAI. All rights reserved."
|
||||
socialLinks={[
|
||||
{ icon: Twitter, href: "https://twitter.com/synapseai", ariaLabel: "Twitter" },
|
||||
{ icon: Linkedin, href: "https://linkedin.com/company/synapseai", ariaLabel: "LinkedIn" },
|
||||
{ icon: Github, href: "https://github.com/synapseai", ariaLabel: "GitHub" }
|
||||
]}
|
||||
ariaLabel="Site footer for SynapseAI"
|
||||
/>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user