diff --git a/src/app/hack/[slug]/not-found.tsx b/src/app/hack/[slug]/not-found.tsx new file mode 100644 index 0000000..e04a53c --- /dev/null +++ b/src/app/hack/[slug]/not-found.tsx @@ -0,0 +1,20 @@ +import React from "react"; +import Link from "next/link"; + +export default async function NotFoundPage() { + return ( +
+
+

Not Found

+

The hack you are looking for does not exist or has not yet been approved.

+ + View all hacks + +

Is this your hack? Log in to make changes.

+
+
+ ); +}