diff --git a/src/components/sections/ContactSection.tsx b/src/components/sections/ContactSection.tsx new file mode 100644 index 0000000..caaa2c2 --- /dev/null +++ b/src/components/sections/ContactSection.tsx @@ -0,0 +1,66 @@ +'use client' + +import { useState } from 'react' +import Button from '@/components/ui/Button' +import Input from '@/components/ui/Input' +import { Mail, MapPin, MessageCircle, Phone } from 'lucide-react' + +export default function ContactSection() { + const [submitted, setSubmitted] = useState(false) + const handleSubmit = (e: React.FormEvent) => { + e.preventDefault() + setSubmitted(true) + } + return ( +
+
+

Get in Touch

+
+
+
+
+ + 45 Florida Road, Morningside, Durban, 4001 +
+
+ + +27 31 123 4567 +
+
+ + info@durbancurry.co.za +
+
+ + + WhatsApp Us + +
+
+ {submitted ? ( +

Thank you! We'll be in touch soon.

+ ) : ( +
+ + +