import { Download, Globe, PlayCircle } from 'lucide-react'; function DownloadSection() { const downloadOptions = [ { icon: Download, title: "کافه بازار", description: "دانلود برای اندروید", gradient: "from-teal-500 to-teal-600", animation: "animate-slideInLeft delay-100" }, { icon: PlayCircle, title: "گوگل پلی", description: "دانلود برای اندروید", gradient: "from-green-500 to-green-600", animation: "animate-fadeInUp delay-200" }, { icon: Globe, title: "وب اپلیکیشن", description: "استفاده آنلاین", gradient: "from-blue-500 to-blue-600", animation: "animate-slideInRight delay-300" } ]; return (

آرام‌لند رو از کجا دانلود کنم؟

{downloadOptions.map((option, index) => (

{option.title}

{option.description}

))}
); } export default DownloadSection;