Files
front-AT/app/not-found.tsx
T

21 lines
503 B
TypeScript
Raw Normal View History

"use client";
2025-09-19 11:26:00 -06:00
import { useRouter } from "next/navigation";
2025-11-05 14:51:47 -06:00
import "./NotFound.css";
2025-09-19 11:26:00 -06:00
2025-09-02 19:50:17 -04:00
export default function NotFound() {
2025-09-19 11:26:00 -06:00
const router = useRouter();
2025-09-19 00:07:17 -06:00
return (
2025-11-05 14:51:47 -06:00
<section className="notfound">
<h1>404</h1>
<h2>Página no encontrada</h2>
<p>
Lo sentimos, la página que buscas no existe o ha sido movida. Verifica
la URL o regresa a la página principal.
</p>
<button onClick={() => router.push("/")}>Regresar al inicio</button>
2025-09-22 15:06:40 -06:00
</section>
2025-09-19 00:07:17 -06:00
);
2025-09-02 19:50:17 -04:00
}