diff --git a/src/components/sections/FirmOverviewSection.tsx b/src/components/sections/FirmOverviewSection.tsx new file mode 100644 index 0000000..1bf0929 --- /dev/null +++ b/src/components/sections/FirmOverviewSection.tsx @@ -0,0 +1,53 @@ +import Link from "next/link" +import Button from "@/components/ui/Button" +import { CalendarClock, ShieldCheck, UserCheck } from 'lucide-react' + +const commitments = [ + { icon: UserCheck, title: "Senior attention on every file", text: "Your matter is handled directly by an experienced attorney — not handed down to a junior associate." }, + { icon: CalendarClock, title: "Appointment-first practice", text: "Consultations are scheduled around your diary at our Pietermaritzburg offices or virtually." }, + { icon: ShieldCheck, title: "Local legal knowledge", text: "Deep familiarity with KwaZulu-Natal property, planning, and commercial courts." }, +] + +export default function FirmOverviewSection() { + return ( +
+
+
+

The firm

+

+ Decades of trusted counsel, without the impersonal machinery. +

+

+ Gumede & Partners was founded in Pietermaritzburg to give established companies, property developers, and emerging entrepreneurs a different kind of legal experience — one built on direct access, disciplined preparation, and practical advice. +

+

+ Because consultations are appointment-based, every meeting gets the time it deserves. No long queues, no rushed advice — just clear direction from attorneys who know KwaZulu-Natal. +

+
+ + + +
+
+ +
+
+ ) +} \ No newline at end of file