aboutsummaryrefslogtreecommitdiffstats
path: root/apps/web/components/DemoModeBanner.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'apps/web/components/DemoModeBanner.tsx')
-rw-r--r--apps/web/components/DemoModeBanner.tsx7
1 files changed, 7 insertions, 0 deletions
diff --git a/apps/web/components/DemoModeBanner.tsx b/apps/web/components/DemoModeBanner.tsx
new file mode 100644
index 00000000..6250be87
--- /dev/null
+++ b/apps/web/components/DemoModeBanner.tsx
@@ -0,0 +1,7 @@
+export default function DemoModeBanner() {
+ return (
+ <div className="h-min w-full rounded bg-yellow-100 px-4 py-2 text-center">
+ Demo mode is on. All modifications are disabled.
+ </div>
+ );
+}