14 lines
678 B
TypeScript
14 lines
678 B
TypeScript
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>
|
|
);
|
|
} |