From ba46ce298a09691251dae9006d830a937ac65396 Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Fri, 31 Jul 2026 14:12:31 +0000 Subject: [PATCH] Deploy --- src/components/sections/IkayaMailSection.tsx | 36 ++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 src/components/sections/IkayaMailSection.tsx diff --git a/src/components/sections/IkayaMailSection.tsx b/src/components/sections/IkayaMailSection.tsx new file mode 100644 index 0000000..6191997 --- /dev/null +++ b/src/components/sections/IkayaMailSection.tsx @@ -0,0 +1,36 @@ +'use client' + +import { useState, type FormEvent } from 'react' +import { LayoutGrid } from 'lucide-react' +import Button from '@/components/ui/Button' +import Input from '@/components/ui/Input' + +export default function IkayaMailSection() { + const [email, setEmail] = useState('') + const [subscribed, setSubscribed] = useState(false) + + const handleSubmit = (e: FormEvent) => { + e.preventDefault() + if (email.trim()) setSubscribed(true) + } + + return ( +
+
+
+ +
+

Join the iKhaya family

+

First access to new artisan collections, design inspiration from Durban, and the stories behind every hand-painted pattern. No hard sell — just an invitation to stay connected.

+ {subscribed ? ( +

Sawubona! Check your inbox to confirm your welcome note.

+ ) : ( +
+ setEmail(e.target.value)} placeholder="Your email address" className="flex-1" /> + +
+ )} +
+
+ ) +} \ No newline at end of file