From 168600b0ceaa4a71ea268f902c1df660ea95c824 Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Sat, 1 Aug 2026 17:20:26 +0000 Subject: [PATCH] Deploy --- .../sections/CollabEnquirySection.tsx | 75 +++++++++++++++++++ 1 file changed, 75 insertions(+) create mode 100644 src/components/sections/CollabEnquirySection.tsx diff --git a/src/components/sections/CollabEnquirySection.tsx b/src/components/sections/CollabEnquirySection.tsx new file mode 100644 index 0000000..4489562 --- /dev/null +++ b/src/components/sections/CollabEnquirySection.tsx @@ -0,0 +1,75 @@ +'use client' + +import { useState, type FormEvent } from 'react' +import { Check, Mail, MessageCircle, Send } from 'lucide-react' +import Button from '@/components/ui/Button' +import Input from '@/components/ui/Input' + +export default function CollabEnquirySection() { + const [submitted, setSubmitted] = useState(false) + + const handleSubmit = (e: FormEvent) => { + e.preventDefault() + setSubmitted(true) + } + + return ( +
+
+
+

Collab Enquiry

+

+ Let's build together +

+

+ Brands, wholesalers, creators, DJs, photographers — if your energy matches the kasi, let's talk. +

+ +

Kasi Drip HQ // Durban — shipping nationwide.

+
+
+ {submitted ? ( +
+
+ +

Message received. Aweh.

+

We reply within 48 hours. Keep an eye on your inbox.

+
+
+ ) : ( +
+

Tell us about the collab

+
+ + +
+
+ + +
+
+ + +
+
+ +