--- import { RefreshCw, Building2, FolderTree, Activity, Lock, Heart, } from 'lucide-react'; const features = [ { title: "Automated Mirroring", description: "Set it and forget it. Automatically sync your GitHub repositories to Gitea on a schedule.", icon: RefreshCw, gradient: "from-primary/10 to-accent/10", iconColor: "text-primary" }, { title: "Bulk Operations", description: "Mirror entire organizations or user accounts with a single configuration.", icon: Building2, gradient: "from-accent/10 to-accent-teal/10", iconColor: "text-accent" }, { title: "Preserve Structure", description: "Maintain your GitHub organization structure or customize how repos are organized.", icon: FolderTree, gradient: "from-accent-teal/10 to-primary/10", iconColor: "text-accent-teal" }, { title: "Real-time Status", description: "Monitor mirror progress with live updates and detailed activity logs.", icon: Activity, gradient: "from-accent-coral/10 to-primary/10", iconColor: "text-accent-coral" }, { title: "Secure & Private", description: "Self-hosted solution keeps your code on your infrastructure with full control.", icon: Lock, gradient: "from-accent-purple/10 to-primary/10", iconColor: "text-accent-purple" }, { title: "Open Source", description: "Free, transparent, and community-driven development. Contribute and customize.", icon: Heart, gradient: "from-primary/10 to-accent-purple/10", iconColor: "text-primary" } ]; ---

Everything You Need for Reliable Backups

Powerful features designed to keep your code safe and accessible, no matter what happens.

{features.map((feature) => { const Icon = feature.icon; return (

{feature.title}

{feature.description}

); })}