import React from "react"; import { Button } from "@/components/ui/button"; import { Input } from "@/components/ui/input"; import { Mail } from "lucide-react"; const NewsletterSignup = () => { const [email, setEmail] = React.useState(""); const handleSubmit = (e: React.FormEvent) => { e.preventDefault(); // This would be connected to your newsletter service console.log("Submitting email:", email); alert("Thanks for subscribing!"); setEmail(""); }; return (

Subscribe to our newsletter

Stay updated with the latest articles, tutorials, and insights from our team. We'll never spam your inbox.

setEmail(e.target.value)} required className="h-12" />

By subscribing, you agree to our Privacy Policy and consent to receive updates from our company.

); }; export default NewsletterSignup;