import React from "react"; import { useNavigate } from "react-router-dom"; import Footer from "../../nav/Footer"; import GlobalAnimatedBackground from "../../../background/GlobalAnimatedBackground"; const NotFoundPage = () => { const navigate = useNavigate(); return (

404

Page Not Found

Sorry, the page you are looking for does not exist or has been moved.

); }; export default NotFoundPage;