diff --git a/src/app/privacy/page.tsx b/src/app/privacy/page.tsx new file mode 100644 index 0000000..621dcad --- /dev/null +++ b/src/app/privacy/page.tsx @@ -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 ( + + + + + + + + ); +}