From 057319b429e361994e0a06a3e559496ec0f09108 Mon Sep 17 00:00:00 2001 From: Yohan Date: Fri, 27 Sep 2024 01:45:57 +0200 Subject: [PATCH] feat: implemented Unframed theme 404 page (#174) --- apps/arkmarket/src/app/not-found.tsx | 148 +++++++++++++++++++++++++++ 1 file changed, 148 insertions(+) create mode 100644 apps/arkmarket/src/app/not-found.tsx diff --git a/apps/arkmarket/src/app/not-found.tsx b/apps/arkmarket/src/app/not-found.tsx new file mode 100644 index 00000000..07c30452 --- /dev/null +++ b/apps/arkmarket/src/app/not-found.tsx @@ -0,0 +1,148 @@ +import { env } from "~/env"; + +export default function NotFoundPage() { + if (env.NEXT_PUBLIC_THEME === "default") { + return ( +
+

404 Not Found

+
+ ); + } + return ( +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ ); +}