From 285c38bcffc9c151d68a49eb5f047b40c34e2c1d Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Sat, 25 Jul 2026 13:58:35 +0000 Subject: [PATCH] Deploy --- src/components/sections/GetInTouchSection.tsx | 109 ++++++++++++++++++ 1 file changed, 109 insertions(+) create mode 100644 src/components/sections/GetInTouchSection.tsx diff --git a/src/components/sections/GetInTouchSection.tsx b/src/components/sections/GetInTouchSection.tsx new file mode 100644 index 0000000..4f232fb --- /dev/null +++ b/src/components/sections/GetInTouchSection.tsx @@ -0,0 +1,109 @@ +'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 GetInTouchSection() { + const [name, setName] = useState(''); + const [email, setEmail] = useState(''); + const [message, setMessage] = useState(''); + + const handleSubmit = (e: React.FormEvent) => { + e.preventDefault(); + alert('Thank you! We will get back to you within 24 hours.'); + }; + + return ( +
+
+
+

+ Get in touch +

+

+ Let us craft your perfect Maasai Mara experience. +

+
+ +
+ {/* Contact Form */} +
+
+ setName(e.target.value)} + required + /> + setEmail(e.target.value)} + required + /> +
+ +