import { li } from 'framer-motion/client'; import { Download, Globe, PlayCircle } from 'lucide-react'; function DownloadSection() { const downloadOptions = [ { icon: './images/cafe.png', title: "کافه بازار", description: "دانلود برای اندروید", link:"https://cafebazaar.ir/app/com.approagency.meditation", // badge: "پرطرفدار", gradient: "from-primary-500/10 to-primary-600/10", border: "border-primary-500/20", animation: "animate-slideInLeft delay-100" }, { icon: './images/myket.png', title: "مایکت", link: "https://myket.ir/app/com.approagency.meditation", description: "دانلود برای اندروید", gradient: "from-primary-500/10 to-primary-600/10", border: "border-primary-500/20", animation: "animate-fadeInUp delay-200" }, { icon:'./images/appstore.png', title: "وب سایت", description: "نسخه وب برای تمام دستگاه‌ها", link:'https://meditation.approagency.ir/web/', badge: "", gradient: "from-primary-500/10 to-primary-600/10", animation: "animate-slideInRight delay-300", border: "border-primary-500/20", } ]; return (
{/* Background pattern */}

همین حالا شروع کنید

آرام‌لند را روی دستگاه مورد علاقه‌تان نصب کنید

{downloadOptions.map((option, index) => ( {/* Shine effect */} {/*
*/} {option.badge && (
{option.badge}
)}
Download {/* */}

{option.title}

{option.description}

))}
); } export default DownloadSection;