diff --git a/src/app/not-found.tsx b/src/app/not-found.tsx new file mode 100644 index 0000000..f6e9285 --- /dev/null +++ b/src/app/not-found.tsx @@ -0,0 +1,31 @@ +import { FC } from "react"; +import Image from "next/image"; +import Link from "next/link"; + +const NotFoundPage: FC = () => { + return ( +
+

+ La pagina que estas buscando no parece existir +

+
+

+ ERROR +

+ 404 +
+ + + +
+ ); +}; +export default NotFoundPage;