From aa2807d370cdd3d52c2af6cf3cfde3a9600807fb Mon Sep 17 00:00:00 2001 From: Pinapelz Date: Tue, 1 Jul 2025 18:31:01 -0700 Subject: add not found pages for site and feed --- site/src/pages/NotFound.tsx | 57 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 site/src/pages/NotFound.tsx (limited to 'site/src/pages/NotFound.tsx') diff --git a/site/src/pages/NotFound.tsx b/site/src/pages/NotFound.tsx new file mode 100644 index 0000000..62c978c --- /dev/null +++ b/site/src/pages/NotFound.tsx @@ -0,0 +1,57 @@ +import { useSearchParams } from "react-router-dom"; +import TitleBar from "../components/TitleBar"; + +export default function NotFound() { + const [searchParams] = useSearchParams(); + const isMoe = searchParams.has("moe"); + + return ( + <> + +
+
+
+

404

+

Page Not Found

+
+ Not found +
+

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

+ +
+
+
+ + ); +} \ No newline at end of file -- cgit v1.2.3