initial
This commit is contained in:
14
web/components/CTASection.tsx
Normal file
14
web/components/CTASection.tsx
Normal 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>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user