From 152f1f747cdeaed80e91f76d930137f23f4e7c6c Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Sun, 26 Jul 2026 17:41:19 +0000 Subject: [PATCH] Deploy --- src/components/sections/ContactSection.tsx | 141 +++++++++++++++++++++ 1 file changed, 141 insertions(+) create mode 100644 src/components/sections/ContactSection.tsx diff --git a/src/components/sections/ContactSection.tsx b/src/components/sections/ContactSection.tsx new file mode 100644 index 0000000..31c05ed --- /dev/null +++ b/src/components/sections/ContactSection.tsx @@ -0,0 +1,141 @@ +'use client' + +import { useEmDashContent } from '@/hooks/useEmDashContent' +import { Mail, MapPin, MessageCircle, Phone } from 'lucide-react' +import Badge from '@/components/ui/Badge' + +export default function ContactSection() { + const { items: hours, loading } = useEmDashContent('business_hours') + + if (loading) { + return
+ } + + // Static contact details – consistent across the site + const contactDetails = { + address: 'R618, Mkuze, KwaZulu-Natal, 3965', + phone: '+27 82 123 4567', + email: 'reservations@mpofanalodge.co.za', + whatsapp: '+27 82 123 4567', + } + + return ( +
+
+
+ + + Get in Touch + + +
+ +

+ We're here to + help +

+ +
+ {/* Map embed */} +
+