blob: 6250be876e2cd1da7b09a521fa18f47a803af5be (
plain) (
blame)
1
2
3
4
5
6
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>
);
}
|