15 lines
813 B
React
15 lines
813 B
React
function FreeTrial() {
|
||
return (
|
||
<div className="bg-gradient-to-r from-teal-500 to-green-600 rounded-3xl p-12 text-white text-center mb-16 animate-fadeInUp animate-pulse-glow">
|
||
<h2 className="text-3xl md:text-4xl font-bold mb-4 animate-fadeInUp delay-100">شروع یک هفته رایگان</h2>
|
||
<p className="text-lg mb-8 text-teal-50 animate-fadeInUp delay-200">
|
||
تمام ویژگیهای پریمیوم رو برای یک هفته کامل تجربه کن، بدون هیچگونه ایراد.
|
||
</p>
|
||
<button className="bg-white text-teal-600 font-bold py-4 px-8 rounded-xl hover:bg-gray-100 transition-all duration-300 transform hover:scale-105 animate-fadeInUp delay-300">
|
||
دانلود و شروع
|
||
</button>
|
||
</div>
|
||
);
|
||
}
|
||
|
||
export default FreeTrial; |