import { Link } from "react-router-dom"; import { Button } from "@/components/ui/button"; import { Card, CardContent } from "@/components/ui/card"; import { Shield, Zap, Eye, Users, ArrowRight, DollarSign, TrendingUp, Lock } from "lucide-react"; const features = [ { icon: Zap, title: "Lowest Fees in the Industry", description: "Just 2.9% + $0.30 per transaction. No hidden platform fees. Every dollar goes further.", }, { icon: Eye, title: "Total Transparency", description: "Real-time dashboards, instant receipts, and full FEC-compliant reporting. No black boxes.", }, { icon: Lock, title: "Your Data Stays Yours", description: "We never sell donor data. Period. Privacy-first architecture with end-to-end encryption.", }, { icon: Users, title: "Built for Liberty", description: "Purpose-built for local parties, independent candidates, and freedom-oriented non-profits.", }, ]; const stats = [ { label: "Raised", value: "$12.4M+", icon: DollarSign }, { label: "Organizations", value: "840+", icon: Users }, { label: "Avg Growth", value: "34%", icon: TrendingUp }, ]; const Index = () => { return (
{/* Hero */}
Freedom-First Fundraising

Fund the Future of{" "} Freedom

The modern fundraising platform for candidates, parties, and non-profits who believe in transparency, low fees, and keeping donor data private.

{/* Stats bar */}
{stats.map((stat) => (
{stat.value}
{stat.label}
))}
{/* Features */}

Why GiveGold?

No corporate bloat. No data harvesting. Just a clean, fast way to fund what matters.

{features.map((feature, i) => (

{feature.title}

{feature.description}

))}
{/* CTA */}

Ready to raise with integrity?

Join hundreds of organizations already using GiveGold to fund freedom.

); }; export default Index;