From 1a72ced351edfe65ea734be5a651a5d3275d8c1d Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Wed, 5 Aug 2026 18:14:37 +0000 Subject: [PATCH] Deploy --- .../sections/FirmOverviewSection.tsx | 53 +++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 src/components/sections/FirmOverviewSection.tsx 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. +

+
+ + + +
+
+
    + {commitments.map((item) => { + const Icon = item.icon + return ( +
  • +
    + +
    +

    {item.title}

    +

    {item.text}

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