diff --git a/src/components/sections/KwaNtofontofoEnquirySection.tsx b/src/components/sections/KwaNtofontofoEnquirySection.tsx new file mode 100644 index 0000000..3c0de1c --- /dev/null +++ b/src/components/sections/KwaNtofontofoEnquirySection.tsx @@ -0,0 +1,111 @@ +'use client' + +import { useState } from "react" +import Button from "@/components/ui/Button" +import Input from "@/components/ui/Input" +import { Mail, MapPin, Phone } from 'lucide-react' + +export default function KwaNtofontofoEnquirySection() { + const [name, setName] = useState("") + const [email, setEmail] = useState("") + const [message, setMessage] = useState("") + const [submitted, setSubmitted] = useState(false) + + const handleSubmit = (e: React.FormEvent) => { + e.preventDefault() + setSubmitted(true) + } + + if (submitted) { + return ( +
+
+

Thank You

+

+ Your enquiry has been received. We will get back to you personally and promptly. +

+
+
+ ) + } + + return ( +
+
+ {/* Contact Information */} +
+

Get in Touch

+

+ Have a question or want to book? Drop us a message and we will respond personally. +

+
+
+ +
+

Phone / WhatsApp

+

+27 33 940 1234

+
+
+
+ +
+

Email

+

info@kwantofontofo.co.za

+
+
+
+ +
+

Address

+

44 Rutherford Circle, Bisley, Pietermaritzburg, 3201, KwaZulu-Natal

+
+
+
+
+ + {/* Enquiry Form */} +
+
+ + setName(e.target.value)} + placeholder="e.g. Thandi Mokoena" + required + /> +
+
+ + setEmail(e.target.value)} + placeholder="you@example.com" + required + /> +
+
+ +