diff --git a/app/not-found.tsx b/app/not-found.tsx new file mode 100644 index 0000000..9ee4dbc --- /dev/null +++ b/app/not-found.tsx @@ -0,0 +1,49 @@ +import Link from "next/link"; +import Window from "@/components/window"; +import GoBackButton from "@/components/go-back-button"; + +export default function NotFound() { + return ( +
+ +
+
+ + + +
+
+

+ 404 — Not Found +

+

+ The page you're looking for doesn't exist. Check the address or + head back home. +

+
+
+ +
+ + + Home + +
+
+
+ ); +} diff --git a/components/go-back-button.tsx b/components/go-back-button.tsx new file mode 100644 index 0000000..224d7b1 --- /dev/null +++ b/components/go-back-button.tsx @@ -0,0 +1,15 @@ +"use client"; + +import { useRouter } from "next/navigation"; + +export default function GoBackButton() { + const router = useRouter(); + return ( + + ); +}