import React, { useEffect } from "react"; import Content from "../components/Content/Content"; import Box, { BoxType } from "../components/Box/Box"; const NotFound: React.FC = () => { useEffect(() => { document.title = "404"; }, []); return ( We're sorry, but the page you are looking for could not be found. Please check the URL or try navigating to a different page. ); }; export default NotFound;