This commit is contained in:
2025-08-22 14:11:18 -05:00
commit 3e9ca1a146
88 changed files with 14387 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
export default function CTASection({ title, description, phone }: { title: string; description: string; phone: string }) {
return (
<div className="bg-brand-navy text-white">
<div className="mx-auto max-w-7xl px-4 py-12 md:py-16">
<h2 className="text-2xl md:text-3xl font-bold">{title}</h2>
<p className="mt-2 text-white/80">{description}</p>
<div className="mt-4 flex gap-3">
<a className="rounded bg-brand-green px-4 py-2 font-semibold" href={`tel:${phone}`}>Call {phone}</a>
<a className="rounded bg-brand-orange px-4 py-2 font-semibold" href="/contact">Request a Quote</a>
</div>
</div>
</div>
);
}