diff --git a/src/components/sections/KwaNtofontofoContactSection.tsx b/src/components/sections/KwaNtofontofoContactSection.tsx new file mode 100644 index 0000000..3f6a7e9 --- /dev/null +++ b/src/components/sections/KwaNtofontofoContactSection.tsx @@ -0,0 +1,123 @@ +'use client' + +import { useState } from "react" +import Button from "@/components/ui/Button" +import Input from "@/components/ui/Input" +import { Mail, MapPin, Phone, Send } from 'lucide-react' + +export default function KwaNtofontofoContactSection() { + const [form, setForm] = useState({ name: "", email: "", enquiry: "" }) + const [sent, setSent] = useState(false) + + const handleSubmit = (e: React.FormEvent) => { + e.preventDefault() + setSent(true) + } + + return ( +
+
+ {/* Left column – Form */} +
+

Get in Touch

+

+ We'd love to hear from you. Send us a message and we'll respond promptly. +

+ {sent ? ( +
+

Thank you for your enquiry!

+

We'll get back to you within 24 hours.

+
+ ) : ( +
+
+ + setForm({ ...form, name: e.target.value })} + required + className="w-full" + /> +
+
+ + setForm({ ...form, email: e.target.value })} + required + className="w-full" + /> +
+
+ +