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:
parent
4d4430609c
commit
be9812b049
|
|
@ -2,7 +2,7 @@ import { Link } from "wouter";
|
||||||
|
|
||||||
export function CTASection() {
|
export function CTASection() {
|
||||||
return (
|
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">
|
<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">
|
<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?
|
Ready to feel stronger, more connected, and at home in your body?
|
||||||
|
|
@ -16,10 +16,10 @@ export function CTASection() {
|
||||||
Book a Class
|
Book a Class
|
||||||
</Link>
|
</Link>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
<div className="max-w-2xl mx-auto">
|
|
||||||
<hr className="border-white border-opacity-30" />
|
<div className="w-full">
|
||||||
</div>
|
<hr className="border-white border-opacity-30" />
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
);
|
);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue