+ 404 + Page not found +
+ +
+ Oops, this page got a bit lost.
+
While we are working on it, here's Hacky peeking to say
+ hi.
+
diff --git a/src/app/not-found.tsx b/src/app/not-found.tsx new file mode 100644 index 0000000..18f6cc0 --- /dev/null +++ b/src/app/not-found.tsx @@ -0,0 +1,68 @@ +import Image from "next/image"; +import { hackyPeeking } from "@/assets/images"; +import Link from "next/link"; +import { getServerSession } from "next-auth"; +import authOptions from "./api/auth/[...nextauth]/authOptions"; +import Toolbar from "@/components/Toolbar"; +import BottomNavbar from "@/components/BottomNavbar"; + +export default async function NotFound() { + const session = await getServerSession(authOptions); + + return ( +
+ Oops, this page got a bit lost.
+
While we are working on it, here's Hacky peeking to say
+ hi.
+