pwf-website-new/client/src/components/home/cta-section.tsx

24 lines
832 B
TypeScript

import { Link } from "wouter";
export function CTASection() {
return (
<section className="py-16 pb-8 text-white bg-[#b5507680]">
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center">
<h3 className="text-2xl md:text-3xl font-playfair font-semibold mb-8">
Ready to feel stronger, more connected, and at home in your body?
</h3>
<div className="flex justify-center mb-6">
<a
href="https://www.momoyoga.com/pilates-with-fadia/schedule"
target="_blank"
rel="noopener noreferrer"
className="bg-rose text-white font-bold py-4 px-10 rounded-full shadow-md hover:bg-opacity-90 transition duration-300 text-lg"
>
Book a Class
</a>
</div>
</div>
</section>
);
}