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!

{ (window as { umami?: { track?: (eventName: string, data?: Record) => void } }) .umami?.track?.('waitlist_submitted', { location: 'waitlist_modal' }); }} >

No credit card required. Unsubscribe at any time.

); }; export default WaitlistModal;