import React from 'react'; import { X, Mail } from 'lucide-react'; interface WaitlistModalProps { isOpen: boolean; onClose: () => void; } const WaitlistModal: React.FC = ({ isOpen, onClose }) => { if (!isOpen) return null; return (
{/* Backdrop */}
{/* Modal Content */}

Join the Waitlist

Be the first to experience focus-driven learning. We'll notify you when we launch!

No credit card required. Unsubscribe at any time.

); }; export default WaitlistModal;