From 7eabc9e0414bf01663c65fc67826905f8da5dbbc Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Sat, 1 Aug 2026 16:26:34 +0000 Subject: [PATCH] Deploy --- src/components/sections/StayFreshSection.tsx | 51 ++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 src/components/sections/StayFreshSection.tsx diff --git a/src/components/sections/StayFreshSection.tsx b/src/components/sections/StayFreshSection.tsx new file mode 100644 index 0000000..e00e311 --- /dev/null +++ b/src/components/sections/StayFreshSection.tsx @@ -0,0 +1,51 @@ +'use client' + +import { useState } from 'react' +import Button from '@/components/ui/Button' +import Input from '@/components/ui/Input' + +export default function StayFreshSection() { + const [email, setEmail] = useState('') + const [submitted, setSubmitted] = useState(false) + + const handleSubmit = (e: React.FormEvent) => { + e.preventDefault() + setSubmitted(true) + } + + return ( +
+
+
+

+ Faka i-email yakho +

+

+ Stay ahead of the culture. Early drop access, exclusive drops. +

+ {submitted ? ( +

Signed up! We'll be in touch.

+ ) : ( +
+ setEmail(e.target.value)} + required + className="bg-black border-2 border-[#d4af37] text-white placeholder-gray-400 rounded-none px-6 py-3 text-lg flex-1 max-w-sm" + /> + +
+ )} +
+
+
+ ) +}