diff --git a/src/components/sections/ContactSection.tsx b/src/components/sections/ContactSection.tsx new file mode 100644 index 0000000..0b01dcb --- /dev/null +++ b/src/components/sections/ContactSection.tsx @@ -0,0 +1,96 @@ +'use client' +import { useState, type FormEvent } from 'react' +import Image from 'next/image' +import Input from '@/components/ui/Input' +import Button from '@/components/ui/Button' +import Badge from '@/components/ui/Badge' +import { CircleCheckBig, Clock, Mail, MapPin, MessageCircle, Phone, Send } from 'lucide-react' + +export default function ContactSection() { + const [submitted, setSubmitted] = useState(false) + const handleSubmit = (e: FormEvent) => { e.preventDefault(); setSubmitted(true) } + const contactMethods = [ + { icon: MapPin, label: 'Visit', value: '12 Florida Road, Morningside, Durban, 4001' }, + { icon: Phone, label: 'Call us', value: '+27 31 555 0148' }, + { icon: Mail, label: "Email", value: "hello@ekhayalami.co.za" }, + { icon: Clock, label: 'Hours', value: 'Mon–Fri 9:00–17:00 · Sat 9:00–13:00' }, + ] + const instagramPosts = [ + { src: 'https://images.pexels.com/photos/5702305/pexels-photo-5702305.jpeg?auto=compress&cs=tinysrgb&h=350', alt: 'Customer styling eKhayalami throws in a bright Durban home' }, + { src: 'https://images.pexels.com/photos/2828584/pexels-photo-2828584.jpeg?auto=compress&cs=tinysrgb&h=350', alt: 'Hand-thrown ceramic vase from the Impendle co-op' }, + { src: 'https://images.pexels.com/photos/5831735/pexels-photo-5831735.jpeg?auto=compress&cs=tinysrgb&h=350', alt: 'Pattern detail inspired by Southern African beadwork' }, + ] + return ( +
+
+
+
+ Durban studio · open all week +

Let's find the piece for your space.

+

Whether you need personalised styling advice or a curated corporate gift box, our Durban team will connect you directly with the right makers from Nongoma, Bulwer, Impendle and Hluhluwe.

+
+ {contactMethods.map((item) => { + const Icon = item.icon + return ( +
+
+
+

{item.label}

+

{item.value}

+
+
+ ) + })} +
+ WhatsApp Us — we reply within a day +
+

Tag us #eKhayalamiStyling

+

Share your space and join a growing community of craft-led homes.

+
+ {instagramPosts.map((post) => ( +
+ {post.alt} +
+ ))} +
+
+
+
+ {submitted ? ( +
+ +

Sawubona! Enquiry received.

+

We'll be in touch within one working day to help style your home or put together a gifting quote.

+
+ ) : ( +
+

Send an enquiry

+
+ + +
+
+ + +
+
+ +