diff --git a/frontend/src/app/not-found.tsx b/frontend/src/app/not-found.tsx new file mode 100644 index 0000000..5d06ac5 --- /dev/null +++ b/frontend/src/app/not-found.tsx @@ -0,0 +1,24 @@ +import Link from "next/link"; +import { Button } from "@/components/ui/button"; +import { GoBackButton } from "@/components/GoBackButton"; + +export default function NotFound() { + return ( +
+

404

+

Page Not Found

+

+ The page you're looking for doesn't exist or may have been moved. +

+ +
+ + + + + + +
+
+ ); +} \ No newline at end of file diff --git a/frontend/src/components/GoBackButton.tsx b/frontend/src/components/GoBackButton.tsx new file mode 100644 index 0000000..1200e3a --- /dev/null +++ b/frontend/src/components/GoBackButton.tsx @@ -0,0 +1,11 @@ +"use client"; + +import { Button } from "@/components/ui/button"; + +export function GoBackButton() { + return ( + + ); +} \ No newline at end of file