import { useRouter } from 'next/router'; import Head from 'next/head'; import IconButton from '../components/IconButton'; import { Wrapper } from '../styles/404'; const NotFound = () => { const router = useRouter(); return ( <> 404 Not Found | Hazem Krimi

404: This page could not be found

router.push('/')}> Go Home
); }; export default NotFound;