'use client' import Image from 'next/image'; import React, { useState } from 'react'; import { motion, AnimatePresence } from 'framer-motion'; type Mode = "light" | "dark"; interface Props { mode?: Mode; } const imageUrls = [ 'https://images.unsplash.com/photo-1535713875002-d1d0cf377fde?q=80&w=1780&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D', 'https://images.unsplash.com/photo-1654110455429-cf322b40a906?q=80&w=1780&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D', 'https://images.unsplash.com/photo-1527980965255-d3b416303d12?q=80&w=1780&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D', 'https://images.unsplash.com/photo-1633332755192-727a05c4013d?q=80&w=1780&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D', 'https://images.unsplash.com/photo-1586297135537-94bc9ba060aa?q=80&w=1780&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D', ]; const zIndices = [5, 4, 3, 2, 1]; const NewsLetter: React.FC = ({ mode }) => { const [email, setEmail] = useState(''); const [subscribed, setSubscribed] = useState(false); const handleSubscribe = () => { if (email) { setSubscribed(true); } }; return (
{!subscribed ? (
{imageUrls.map((url, index) => ( Image ))}
Subscribe to our newsletter Subscribe to our newsletter and never miss an update. Get the latest news, articles, and exclusive offers straight to your inbox!
setEmail(e.target.value)} />
) : ( Email Sent! We have sent a confirmation email to your email address. Check your inbox for more details. )}
); } export default NewsLetter;