import { Button, Result } from 'antd'; import { useTranslation } from 'react-i18next'; import { useNavigate } from 'react-router-dom'; import { useAuthService } from '@/hooks/useAuth'; // Simple license expired page that doesn't trigger verification const LicenseExpired = () => { const navigate = useNavigate(); const { t } = useTranslation('license-expired'); const authService = useAuthService(); // Direct fallback content in case of translation issues const fallbackTitle = 'Your Worklenz trial has expired!'; const fallbackSubtitle = 'Please upgrade now.'; const fallbackButton = 'Upgrade now'; return (