17 lines
871 B
React
17 lines
871 B
React
function CallToAction() {
|
||
return (
|
||
<div className="text-center bg-gradient-to-r from-green-100 via-teal-100 to-blue-100 rounded-3xl p-16 animate-fadeInUp delay-200">
|
||
<h2 className="text-3xl md:text-4xl font-bold text-gray-800 mb-6">
|
||
آماده برای یک زندگی آرامتر؟
|
||
</h2>
|
||
<p className="text-xl text-gray-700 mb-8 max-w-2xl mx-auto leading-relaxed">
|
||
امروز اولین قدم رو بردار و ببین چطور آراملند میتونه در تغییر کیفیت زندگیات کمک کنه.
|
||
</p>
|
||
<button className="bg-gradient-to-r from-teal-600 to-green-600 text-white font-bold py-4 px-10 rounded-xl hover:shadow-2xl transition-all duration-300 transform hover:scale-105 text-lg">
|
||
الان شروع کن
|
||
</button>
|
||
</div>
|
||
);
|
||
}
|
||
|
||
export default CallToAction; |