1 import { useTranslation } from 'react-i18next' 2 3 export default function NotFound() { 4 const { t } = useTranslation() 5 6 return ( 7 <div className="text-muted-foreground w-full h-full flex flex-col items-center justify-center gap-2"> 8 <div>{t('Lost in the void')} 🌌</div> 9 <div>(404)</div> 10 </div> 11 ) 12 } 13