add easter egg and settings menu
All checks were successful
delpoy / build-and-deploy (push) Successful in 44s

This commit is contained in:
2023-08-26 13:45:33 +02:00
parent 19d97c947f
commit 7392b61e3e
7 changed files with 87 additions and 6 deletions

View File

@ -1,5 +1,4 @@
import { type Writable, writable } from 'svelte/store';
import { persisted } from 'svelte-local-storage-store';
import type { Writable } from 'svelte/store';
export const registered: Writable<{
username: string;
} | null> = writable(null);
export const playAudio: Writable<boolean> = persisted('playAudio', false);