diff --git a/dashboard/client/src/App.svelte b/dashboard/client/src/App.svelte
index 036e9ea..09b71b0 100644
--- a/dashboard/client/src/App.svelte
+++ b/dashboard/client/src/App.svelte
@@ -5,6 +5,7 @@
import SSH from './Ssh.svelte';
import { onMount } from 'svelte';
import ClassDoc from './ClassDoc.svelte';
+ import Snowfall from "./Snowfall.svelte";
let showSSH = false;
let sshInitialised = false;
@@ -76,14 +77,38 @@
widthVertical1st = newWidth;
}
}
+
+ let isSnowfallEnabled = true;
+
+ function toggleSnowfall() {
+ isSnowfallEnabled = !isSnowfallEnabled;
+ }
+
+