Improve the call to action section by extending the line and reducing space

Adjusts CTASection component to extend the horizontal line and reduce padding using CSS classes.

Replit-Commit-Author: Agent
Replit-Commit-Session-Id: d004b9e1-f9be-46e2-acda-f440ccd644a9
Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/af8dabca-e746-4e53-9c29-d8d4d9cf30f5/18098a8b-235e-48e8-a390-53a6c498c2b5.jpg
This commit is contained in:
JeffEmmett 2025-06-13 19:09:44 +00:00
parent 4d4430609c
commit be9812b049
1 changed files with 5 additions and 5 deletions

View File

@ -2,7 +2,7 @@ import { Link } from "wouter";
export function CTASection() {
return (
<section className="py-16 text-white" style={{ backgroundColor: '#0c8991' }}>
<section className="py-16 pb-8 text-white" style={{ backgroundColor: '#0c8991' }}>
<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?
@ -16,10 +16,10 @@ export function CTASection() {
Book a Class
</Link>
</div>
<div className="max-w-2xl mx-auto">
<hr className="border-white border-opacity-30" />
</div>
</div>
<div className="w-full">
<hr className="border-white border-opacity-30" />
</div>
</section>
);