From adbe43e74ba7b87ba1c1cd80b3dcff22e78edb4f Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Wed, 5 Aug 2026 18:14:37 +0000 Subject: [PATCH] Deploy --- .../sections/FirmContactSection.tsx | 70 +++++++++++++++++++ 1 file changed, 70 insertions(+) create mode 100644 src/components/sections/FirmContactSection.tsx diff --git a/src/components/sections/FirmContactSection.tsx b/src/components/sections/FirmContactSection.tsx new file mode 100644 index 0000000..f859c56 --- /dev/null +++ b/src/components/sections/FirmContactSection.tsx @@ -0,0 +1,70 @@ +import { Card, CardHeader, CardTitle, CardContent } from '@/components/ui/Card' +import { Mail, MapPin, Phone } from 'lucide-react' + +export default function FirmContactSection() { + const channels = [ + { icon: Phone, label: 'Phone', value: "+27 33 342 1155", href: "tel:+27333421155" }, + { icon: Mail, label: "Email", value: "info@gumedepartners.co.za", href: 'mailto:info@gumedepartners.co.za' }, + ] + + return ( +
+
+
+

Contact

+

Find us in the capital of KwaZulu-Natal

+

+ Prefer to speak directly? Call, email, or visit our Church Street offices — we are based in Pietermaritzburg and serve all of KwaZulu-Natal. +

+
+ +
+
+ + + Contact details + + +
+ +
+

Office

+

+ 2nd Floor, 251 Church Street +
+ Pietermaritzburg, KwaZulu-Natal, 3201 +

+
+
+ {channels.map((channel) => { + const Icon = channel.icon + return ( +
+ +
+

{channel.label}

+ + {channel.value} + +
+
+ ) + })} +
+
+
+ +
+