Files
aramejan/app/components/WhyAramland.jsx
T
2025-11-06 18:35:20 +03:30

26 lines
1.0 KiB
React
Raw Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
function WhyAramland() {
const stats = [
{ number: "۲۰۰+", text: "مدیتیشن و تمرین‌های تنفسی", color: "text-teal-600", delay: "delay-100" },
{ number: "۱۵+", text: "ساعت محتوای صوتی فارسی", color: "text-green-600", delay: "delay-200" },
{ number: "۲۴/۷", text: "دسترسی بدون محدود", color: "text-blue-600", delay: "delay-300" }
];
return (
<div className="bg-white rounded-3xl shadow-xl p-12 mb-16 animate-fadeInUp">
<h2 className="text-3xl md:text-4xl font-bold text-gray-800 text-center mb-12">
چرا آراملند؟
</h2>
<div className="grid md:grid-cols-3 gap-8">
{stats.map((stat, index) => (
<div key={index} className={`text-center animate-fadeInUp ${stat.delay}`}>
<div className={`text-5xl font-bold ${stat.color} mb-3`}>{stat.number}</div>
<p className="text-gray-700 text-lg">{stat.text}</p>
</div>
))}
</div>
</div>
);
}
export default WhyAramland;