aboutsummaryrefslogtreecommitdiffstats
path: root/apps/web/app/dashboard/error.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'apps/web/app/dashboard/error.tsx')
-rw-r--r--apps/web/app/dashboard/error.tsx9
1 files changed, 9 insertions, 0 deletions
diff --git a/apps/web/app/dashboard/error.tsx b/apps/web/app/dashboard/error.tsx
new file mode 100644
index 00000000..556e59a3
--- /dev/null
+++ b/apps/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>
+ );
+}