import { Modal, Title, Text } from '@mantine/core'; import { useNavigate } from '@remix-run/react'; export default function DeletedAccount() { const navigate = useNavigate(); return ( navigate('/')} withCloseButton shadow="md" radius="md" > Your account has been deleted Sorry to see you go. If you change your mind, you can always create a new account. Go back to the homepage ); }