aboutsummaryrefslogtreecommitdiffstats
path: root/apps/web/components/DemoModeBanner.tsx
blob: 8ab4dd0dc31ebefacabec0ea28ca56df94f04f36 (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 text-black">
      Demo mode is on. All modifications are disabled.
    </div>
  );
}