it/web/components/CTA.tsx
2025-10-25 20:37:00 +02:00

19 lines
747 B
TypeScript

import Link from "next/link";
export default function CTA() {
return (
<section className="container py-14">
<div className="card flex flex-col items-start gap-4 sm:flex-row sm:items-center sm:justify-between">
<div>
<h3 className="text-xl font-semibold">Ready to ship a fix or start care?</h3>
<p className="text-sm text-muted-foreground">Book a free 20-minute check. Clear scope, then we execute.</p>
</div>
<div className="flex gap-3">
<Link href="/contact" className="btn-primary no-underline">Book free check</Link>
<Link href="/services" className="no-underline rounded-xl border px-5 py-3">Browse services</Link>
</div>
</div>
</section>
);
}