From 64fbc7fcdec7d55810d43cd2016c1bb1f762fd43 Mon Sep 17 00:00:00 2001 From: Jared Schoeny Date: Fri, 29 May 2026 12:52:24 -0600 Subject: [PATCH] Add not found page for hacks --- src/app/hack/[slug]/not-found.tsx | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 src/app/hack/[slug]/not-found.tsx 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.

+
+
+ ); +}