import { Alert, AlertDescription, AlertTitle } from '@/components/ui/alert'; import { Button } from '@/components/ui/button'; import { Shield } from 'lucide-react'; import { useNavigate } from 'react-router-dom'; export function MFAEnrollmentRequired() { const navigate = useNavigate(); return ( Multi-Factor Authentication Setup Required

Your role requires Multi-Factor Authentication. Please set up MFA to access this area.

); }