import { BoltIcon, GithubIcon, ServerIcon } from 'lucide-react'; import Link from 'next/link'; import { FeatureCard } from '@/components/feature-card'; import { GetStartedButton } from '@/components/get-started-button'; import { DataOwnershipIllustration } from '@/components/illustrations/data-ownership'; import { PrivacyIllustration } from '@/components/illustrations/privacy'; import { Section, SectionHeader } from '@/components/section'; import { Button } from '@/components/ui/button'; const secondaryFeatures = [ { title: 'Open Source', description: 'Full transparency. Audit the code, contribute, fork it, or self-host without lock-in.', icon: GithubIcon, }, { title: 'Self-hosting', description: 'Deploy OpenPanel anywhere - your server, your cloud, or locally. Full flexibility.', icon: ServerIcon, }, { title: 'Lightweight & Fast', description: "A tiny, high-performance tracker that won't slow down your site.", icon: BoltIcon, }, ]; export function DataPrivacy() { return (
Built for Control,
Transparency & Trust } />
} title="GDPR compliant" variant="large" /> } title="Data Ownership" variant="large" />
{secondaryFeatures.map((feature) => ( ))}
); }