From 6df50afd523e6aa9940ef4a5698bdde8474b530f Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Tue, 23 Jun 2026 08:47:28 +0000 Subject: [PATCH] Deploy --- .../sections/KwaNtofontofoEnquirySection.tsx | 111 ++++++++++++++++++ 1 file changed, 111 insertions(+) create mode 100644 src/components/sections/KwaNtofontofoEnquirySection.tsx 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 + /> +
+
+ +