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" + /> + +
+ )} +
+
+
+ ) +}