diff --git a/.husky/pre-commit b/.husky/pre-commit index 36af219..6440a3a 100644 --- a/.husky/pre-commit +++ b/.husky/pre-commit @@ -2,3 +2,5 @@ . "$(dirname "$0")/_/husky.sh" npx lint-staged +npm run lint:fix +npm run prettier:fix diff --git a/src/app/not-found.tsx b/src/app/not-found.tsx new file mode 100644 index 0000000..9855da2 --- /dev/null +++ b/src/app/not-found.tsx @@ -0,0 +1,75 @@ +/* eslint-disable tailwindcss/migration-from-tailwind-2 */ +import { ChevronLeft } from "lucide-react"; + +import { Header } from "@/components/Header/Header"; +import { Mountain } from "@/components/Icons/Mountain"; +import { Link } from "@/components/Link"; +import { Particles } from "@/components/Particles"; +import { footer } from "@/lib/data"; +import { getMetaData, getViewports } from "@/lib/metadata"; + +export const generateMetadata = () => getMetaData({}); + +export const generateViewport = getViewports; + +export default function Home() { + return ( + <> +
+
+
+
+
+
+ +
+
+
+ +
+
+
+
+
+
+
+
+

+ 404 +

+

+ La página que estás buscando no existe. +

+
+ + Volver al inicio + +
+
+
+
+
+
+ + + ); +}