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

17 lines
871 B
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.
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;