From 5c7d2ec49f49f630d17b4d11b327a7f27685c036 Mon Sep 17 00:00:00 2001 From: Patrick Alvin Alcala Date: Thu, 25 Sep 2025 09:22:44 +0800 Subject: [PATCH] Added not found page --- src/errors/404.tsx | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 src/errors/404.tsx diff --git a/src/errors/404.tsx b/src/errors/404.tsx new file mode 100644 index 0000000..bc58eb1 --- /dev/null +++ b/src/errors/404.tsx @@ -0,0 +1,18 @@ +import { Column, Logo, Page, Button, Padding } from '../components' + +export default function NotFound() { + return ( + <> + + + +

Error 404

+

Page not found

+ + + +
+
+ + ) +}