From 4ae2e9db7e9f7ba002a3039f04955eb3d709afcf Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Mon, 3 Aug 2026 11:42:11 +0000 Subject: [PATCH] Deploy --- .../sections/LocationContactSection.tsx | 94 +++++++++++++++++++ 1 file changed, 94 insertions(+) create mode 100644 src/components/sections/LocationContactSection.tsx 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.

+
+
+ +
+