aboutsummaryrefslogtreecommitdiffstats
path: root/packages/web
diff options
context:
space:
mode:
Diffstat (limited to 'packages/web')
-rw-r--r--packages/web/app/dashboard/error.tsx9
-rw-r--r--packages/web/app/dashboard/not-found.tsx7
2 files changed, 16 insertions, 0 deletions
diff --git a/packages/web/app/dashboard/error.tsx b/packages/web/app/dashboard/error.tsx
new file mode 100644
index 00000000..2bba0e98
--- /dev/null
+++ b/packages/web/app/dashboard/error.tsx
@@ -0,0 +1,9 @@
+"use client";
+
+export default function Error() {
+ return (
+ <div className="flex size-full">
+ <div className="m-auto text-3xl">Something went wrong</div>
+ </div>
+ );
+}
diff --git a/packages/web/app/dashboard/not-found.tsx b/packages/web/app/dashboard/not-found.tsx
new file mode 100644
index 00000000..abd1ebae
--- /dev/null
+++ b/packages/web/app/dashboard/not-found.tsx
@@ -0,0 +1,7 @@
+export default function NotFound() {
+ return (
+ <div className="flex size-full">
+ <div className="m-auto text-3xl">Not Found :(</div>
+ </div>
+ );
+}