From 591322492853d73376bd64520c7129f3fce94cae Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Tue, 28 Jul 2026 12:39:43 +0000 Subject: [PATCH] Deploy --- .../sections/EarthyNewsletterSection.tsx | 55 +++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 src/components/sections/EarthyNewsletterSection.tsx diff --git a/src/components/sections/EarthyNewsletterSection.tsx b/src/components/sections/EarthyNewsletterSection.tsx new file mode 100644 index 0000000..81d1670 --- /dev/null +++ b/src/components/sections/EarthyNewsletterSection.tsx @@ -0,0 +1,55 @@ +'use client' +import { useState } from 'react' +import { ArrowRight, Mail } from 'lucide-react' +import Image from 'next/image' +import Button from '@/components/ui/Button' +import Input from '@/components/ui/Input' + +export default function EarthyNewsletterSection() { + const [email, setEmail] = useState('') + const [subscribed, setSubscribed] = useState(false) + const handleSubmit = (e: React.FormEvent) => { + e.preventDefault() + if (email) setSubscribed(true) + } + return ( +
+
+
+
+ Marula oil bottle +
+
+

Imvelo Tips

+

Get early access to small batches

+

Subscribe for seasonal skincare tips, new product alerts, and exclusive offers from the workshop.

+ {subscribed ? ( +

Siyabonga! You're on the list.

+ ) : ( +
+ setEmail(e.target.value)} + required + className="flex-1" + /> + +
+ )} +
+
+
+
+ ) +} \ No newline at end of file