atualizacoes modulo fechamento

This commit is contained in:
Vitex Tecnologia
2026-04-26 22:54:56 -03:00
parent 7a01c6f97b
commit 6da067c641
29 changed files with 5973 additions and 3 deletions
@@ -0,0 +1,25 @@
import { useEffect } from "react";
import { Link, useLocation } from "react-router-dom";
export default function NotFound() {
const location = useLocation();
useEffect(() => {
console.error(
"404 Error: User attempted to access non-existent fechamento-hgtx route:",
location.pathname,
);
}, [location.pathname]);
return (
<div className="flex min-h-[70vh] items-center justify-center">
<div className="text-center">
<h1 className="mb-3 text-4xl font-bold">404</h1>
<p className="mb-4 text-muted-foreground">Rota não encontrada neste módulo.</p>
<Link to="/fechamento-hgtx" className="text-primary underline hover:text-primary/90">
Voltar para Fechamentos
</Link>
</div>
</div>
);
}