// components/FloatingAlert.jsx import { useEffect } from "react"; const FloatingAlert = ({ message, onClose, duration = 3000 }) => { useEffect(() => { const timer = setTimeout(() => { onClose(); }, duration); return () => clearTimeout(timer); }, [onClose, duration]); return (