From 82ba7412caa148f26c130ee273103318d9134a55 Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Tue, 23 Jun 2026 08:47:17 +0000 Subject: [PATCH] Deploy --- .../sections/ContactEnquirySection.tsx | 122 ++++++++++++++++++ 1 file changed, 122 insertions(+) create mode 100644 src/components/sections/ContactEnquirySection.tsx diff --git a/src/components/sections/ContactEnquirySection.tsx b/src/components/sections/ContactEnquirySection.tsx new file mode 100644 index 0000000..8b9cac1 --- /dev/null +++ b/src/components/sections/ContactEnquirySection.tsx @@ -0,0 +1,122 @@ +'use client' + +import { useState } from "react" +import Button from "@/components/ui/Button" +import Input from "@/components/ui/Input" +import { Mail, MessageCircle, Phone } from 'lucide-react' + +export default function ContactEnquirySection() { + const [name, setName] = useState("") + const [email, setEmail] = useState("") + const [phone, setPhone] = useState("") + const [message, setMessage] = useState("") + const [submitted, setSubmitted] = useState(false) + + const handleSubmit = (e: React.FormEvent) => { + e.preventDefault() + setSubmitted(true) + // Actual submission handled by backend + } + + return ( +
+
+
+ Get in Touch +

+ Let Us Tailor Your Stay +

+

+ Whether you need an early check-in, a special dinner arrangement, or a private + tour of the Midlands Meander — we are here to make it happen. Reach out directly + or use the form below and we will respond within the hour. +

+ +
+
+
+
+
+ +
+
+

Phone

+

+27 63 363 1797

+
+
+
+
+ +
+
+

Email

+

bookings@kwantofontofo.co.za

+
+
+
+
+ +
+
+

WhatsApp

+

+27 63 363 1797

+
+
+
+

+ Trading hours: 07:00 – 22:00 daily, + including public holidays (South Africa has many — we stay open). +

+
+
+
+ +
+ {submitted ? ( +
+

Thank you!

+

+ Your enquiry has been received. We will respond within the hour. +

+
+ ) : ( +
+ setName(e.target.value)} + required + /> + setEmail(e.target.value)} + required + /> + setPhone(e.target.value)} + /> +