import { useNavigate } from "react-router-dom"; export default function NotFound() { const navigate = useNavigate(); const handlegohome = () => { navigate("/"); }; return ( <>

404

Page not found

Sorry, we couldn’t find the page you’re looking for.

Go back home

); }