diff --git a/src/components/sections/ConsultationCTASection.tsx b/src/components/sections/ConsultationCTASection.tsx new file mode 100644 index 0000000..a8da51b --- /dev/null +++ b/src/components/sections/ConsultationCTASection.tsx @@ -0,0 +1,42 @@ +'use client' +import Link from 'next/link' +import { CalendarCheck, Clock, ShieldCheck } from 'lucide-react' + +export default function ConsultationCTASection() { + const commitments = [ + { icon: CalendarCheck, label: 'Same-week consultation slots' }, + { icon: Clock, label: '45-minute focused sessions' }, + { icon: ShieldCheck, label: 'Clear advice, no legal jargon' }, + ] + + return ( +
+
+

Consultation booking

+

+ Your Legal Solution Starts Here +

+

+ Corporate structuring, property transfers, or a dispute that needs a firm hand — book a consultation and leave with a clear next step. +

+ + Book a Consultation + +
+ {commitments.map((item) => { + const Icon = item.icon + return ( + + + {item.label} + + ) + })} +
+
+
+ ) +} \ No newline at end of file