import { useNavigate } from 'react-router'; import { RainbowButton } from '../../components/rainbow-button'; import { LayoutWithSky } from '../../components/layouts-inner'; import { AnimatedDudeWithWire } from './graphics/dude'; import { Routes } from '../../lib/links'; import { useT } from '../../lib/use-t'; export const NotFound = () => { const t = useT(); const navigate = useNavigate(); return (

{'Not found'}

{t("The page you're looking for doesn't exists.")}

navigate(Routes.REFERRALS)} variant="border" className="text-xs" > {t('Go back and try again')}

); };