import { useLocation } from "react-router-dom"; import { useEffect } from "react"; import { ArrowLeft } from "lucide-react"; import { TechBackground } from "@/components/TechShapes"; const NotFound = () => { const location = useLocation(); useEffect(() => { console.error( "404 Error: User attempted to access non-existent route:", location.pathname ); }, [location.pathname]); return (
{/* Background elements */}
404

Página não encontrada

A página que você está procurando não existe ou foi removida.

Voltar para a página inicial
); }; export default NotFound;