diff --git a/src/components/sections/NewsletterSection.tsx b/src/components/sections/NewsletterSection.tsx new file mode 100644 index 0000000..a191f50 --- /dev/null +++ b/src/components/sections/NewsletterSection.tsx @@ -0,0 +1,62 @@ +'use client' + +import { useState } from 'react' +import Button from '@/components/ui/Button' +import Input from '@/components/ui/Input' + +export default function NewsletterSection() { + const [email, setEmail] = useState('') + const [submitted, setSubmitted] = useState(false) + + const handleSubmit = (e: React.FormEvent) => { + e.preventDefault() + if (!email) return + // In real app: POST to API + setSubmitted(true) + setEmail('') + } + + return ( +
+
+

+ Stay in the Loop, +
+ Stay Stylish +

+

+ Early drop alerts, behind-the-scenes, and exclusive access. +

+ {submitted ? ( +

+ 🔥 You're in! Check your inbox for the first drop. +

+ ) : ( +
+
+ setEmail(e.target.value)} + required + className="w-full border-2 border-[#d4af37] bg-transparent text-white placeholder-gray-400 focus:outline-none focus:ring-2 focus:ring-[#d4af37] px-4 py-3" + /> +
+ +
+ )} +

+ No spam, just fresh fits. +

+
+
+ ) +} \ No newline at end of file