diff --git a/src/components/sections/LocationContactSection.tsx b/src/components/sections/LocationContactSection.tsx new file mode 100644 index 0000000..1cde880 --- /dev/null +++ b/src/components/sections/LocationContactSection.tsx @@ -0,0 +1,94 @@ +'use client' +import { useState, type FormEvent } from 'react' +import { Mail, MapPin, MessageCircle, Phone } from 'lucide-react' + +import Button from '@/components/ui/Button' +import Input from '@/components/ui/Input' +import { Card, CardContent } from '@/components/ui/Card' + +const ADDRESS = 'Shop 12, Fourways Crossing, Witkoppen Road, Fourways, Johannesburg, 2191' +const PHONE = '+27 82 555 0199' +const PHONE_HREF = 'tel:+27825550199' +const EMAIL = 'bookings@zamasalon.co.za' +const WHATSAPP_HREF = 'https://wa.me/27825550199' + +export default function LocationContactSection() { + const [submitted, setSubmitted] = useState(false) + + const handleSubmit = (e: FormEvent) => { + e.preventDefault() + setSubmitted(true) + } + + return ( +
+
+
+

Visit the salon

+

We're right here in Fourways - pull in and say hello.

+
+
+ +
+