new version

This commit is contained in:
IO420
2026-01-11 20:36:14 -06:00
commit 4eb70fbb1e
33 changed files with 4750 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
export default function NotFound() {
return (
<div style={{ padding: 40, textAlign: 'center' }}>
<h1>404 - Página no encontrada</h1>
<p>La ruta que buscas no existe.</p>
<a href='/Login'>Login</a>
</div>
);
}
//IO