From 93e9dc7c4aed722474b54d5e94dfc7531acab51e Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Mon, 27 Jul 2026 18:59:56 +0000 Subject: [PATCH] Deploy --- .../sections/JoinTheHustleCTASection.tsx | 70 +++++++++++++++++++ 1 file changed, 70 insertions(+) create mode 100644 src/components/sections/JoinTheHustleCTASection.tsx diff --git a/src/components/sections/JoinTheHustleCTASection.tsx b/src/components/sections/JoinTheHustleCTASection.tsx new file mode 100644 index 0000000..f133fae --- /dev/null +++ b/src/components/sections/JoinTheHustleCTASection.tsx @@ -0,0 +1,70 @@ +'use client' + +import Button from '@/components/ui/Button' +import Input from '@/components/ui/Input' +import Image from 'next/image' +import Link from 'next/link' +import { useState } from 'react' + +export default function JoinTheHustleCTASection() { + const [email, setEmail] = useState('') + const [submitted, setSubmitted] = useState(false) + + const handleSubmit = (e: React.FormEvent) => { + e.preventDefault() + if (email) setSubmitted(true) + } + + return ( +
+
+
+

Claim Your Stripes

+

Limited drops, bold African prints. Join the movement.

+
+ + + + {!submitted ? ( +
+ setEmail(e.target.value)} + className="border-2 border-white bg-transparent text-white placeholder-gray-400" + required + /> + +
+ ) : ( +

You're in. Welcome to the movement.

+ )} +
+
+
+ Street style in Soweto +
+
+
+ ) +} \ No newline at end of file