Add src/app/privacy/page.tsx

This commit is contained in:
2026-03-04 13:48:29 +00:00
parent af298e87ba
commit 2a392421f4

186
src/app/privacy/page.tsx Normal file
View File

@@ -0,0 +1,186 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen";
import LegalSection from "@/components/legal/LegalSection";
import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis";
export default function PrivacyPage() {
const navItems = [
{ name: "Home", id: "/" },
{ name: "Investment Strategy", id: "/investment-strategy" },
{ name: "Portfolio", id: "/portfolio" },
{ name: "About Us", id: "/about" },
{ name: "Contact", id: "/contact" },
{ name: "Privacy Policy", id: "/privacy" },
{ name: "Terms of Service", id: "/terms" },
];
const footerColumns = [
{
items: [
{ label: "Home", href: "/" },
{ label: "Investment Strategy", href: "/investment-strategy" },
{ label: "Portfolio", href: "/portfolio" },
],
},
{
items: [
{ label: "About Us", href: "/about" },
{ label: "Team", href: "/about" },
{ label: "Contact", href: "/contact" },
],
},
{
items: [
{ label: "LinkedIn", href: "https://linkedin.com" },
{ label: "Twitter", href: "https://twitter.com" },
{ label: "Crunchbase", href: "https://crunchbase.com" },
],
},
{
items: [
{ label: "Privacy Policy", href: "/privacy" },
{ label: "Terms of Service", href: "/terms" },
{ label: "Compliance", href: "/compliance" },
],
},
];
return (
<ThemeProvider
defaultButtonVariant="hover-bubble"
defaultTextAnimation="background-highlight"
borderRadius="pill"
contentWidth="mediumLarge"
sizing="medium"
background="circleGradient"
cardStyle="layered-gradient"
primaryButtonStyle="radial-glow"
secondaryButtonStyle="layered"
headingFontWeight="normal"
>
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={navItems}
brandName="InvestTech Capital"
bottomLeftText="Global Software Investment"
bottomRightText="hello@investtech.com"
/>
</div>
<div id="legal" data-section="legal">
<LegalSection
layout="page"
title="Privacy Policy"
subtitle="Last updated: January 15, 2025"
sections={[
{
heading: "1. Introduction", content: [
{
type: "paragraph", text: "InvestTech Capital (\"Company,\" \"we,\" \"us,\" or \"our\") operates the website and services related to software investment management. This Privacy Policy explains how we collect, use, disclose, and otherwise process personal information in connection with our websites, applications, and other services (collectively, the \"Services\")."},
{
type: "paragraph", text: "We are committed to protecting your privacy and ensuring you have a positive experience on our website. This policy explains our privacy practices in clear and simple terms."},
],
},
{
heading: "2. Information We Collect", content: [
{
type: "paragraph", text: "We collect information from you in various ways:"},
{
type: "list", items: [
"Information you provide directly: name, email address, phone number, company information, and investment preferences when you contact us or request information", "Information collected automatically: IP address, browser type, pages visited, time spent on pages, and referring website through cookies and similar technologies", "Payment information: billing address, credit card details, and transaction history when applicable", "Communication data: records of emails, messages, and other communications you send to us"],
},
],
},
{
heading: "3. How We Use Your Information", content: [
{
type: "paragraph", text: "We use the information we collect for the following purposes:"},
{
type: "list", items: [
"To provide and improve our Services", "To respond to your inquiries and provide customer support", "To send you marketing communications (with your consent)", "To analyze website usage and optimize user experience", "To detect and prevent fraud or security incidents", "To comply with legal obligations and regulations", "To establish and manage business relationships"],
},
],
},
{
heading: "4. Information Sharing", content: [
{
type: "paragraph", text: "We do not sell, trade, or rent your personal information. We may share information with:"},
{
type: "list", items: [
"Service providers and vendors who assist us in operating our website and conducting business", "Legal authorities when required by law or in response to legal requests", "Business partners for co-marketing or joint ventures (with your consent)", "Successors or assignees in the event of a merger, acquisition, or business sale"],
},
],
},
{
heading: "5. Data Security", content: [
{
type: "paragraph", text: "We implement appropriate technical and organizational measures to protect your personal information against unauthorized access, disclosure, modification, or destruction. These measures include:"},
{
type: "list", items: [
"SSL encryption for data transmission", "Secure servers and firewalls", "Regular security audits and vulnerability assessments", "Limited access to personal information on a need-to-know basis"],
},
{
type: "paragraph", text: "However, no method of transmission over the Internet or electronic storage is completely secure. We cannot guarantee absolute security."},
],
},
{
heading: "6. Your Privacy Rights", content: [
{
type: "paragraph", text: "Depending on your location, you may have certain rights regarding your personal information, including:"},
{
type: "list", items: [
"Right to access your personal information", "Right to correct inaccurate data", "Right to delete your information", "Right to opt-out of marketing communications", "Right to data portability", "Right to withdraw consent at any time"],
},
{
type: "paragraph", text: "To exercise any of these rights, please contact us at privacy@investtech.com."},
],
},
{
heading: "7. Cookies and Tracking Technologies", content: [
{
type: "paragraph", text: "Our website uses cookies and similar tracking technologies to enhance your experience. You can control cookie preferences through your browser settings. Most browsers allow you to refuse cookies or alert you when cookies are being sent."},
],
},
{
heading: "8. Third-Party Links", content: [
{
type: "paragraph", text: "Our website may contain links to third-party websites. We are not responsible for the privacy practices or content of external sites. We encourage you to review the privacy policies of any third-party websites before providing personal information."},
],
},
{
heading: "9. Children's Privacy", content: [
{
type: "paragraph", text: "Our Services are not directed to children under 13. We do not knowingly collect personal information from children. If we learn we have collected information from a child under 13, we will delete such information promptly."},
],
},
{
heading: "10. Policy Updates", content: [
{
type: "paragraph", text: "We may update this Privacy Policy from time to time to reflect changes in our practices or applicable laws. We will notify you of significant changes by updating the \"Last Updated\" date and posting the revised policy on our website."},
],
},
{
heading: "11. Contact Us", content: [
{
type: "paragraph", text: "If you have questions about this Privacy Policy or our privacy practices, please contact us at:"},
{
type: "list", items: [
"Email: privacy@investtech.com", "Mail: InvestTech Capital, Legal Department, [Address]", "Phone: +1 (555) 123-4567"],
},
],
},
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
logoText="InvestTech Capital"
columns={footerColumns}
/>
</div>
</ThemeProvider>
);
}