diff --git a/src/app.html b/src/app.html
new file mode 100644
index 0000000..7f927ce
--- /dev/null
+++ b/src/app.html
@@ -0,0 +1,38 @@
+
+
+
+
+
+
+ WebVM - Linux virtualization in WebAssembly
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ %sveltekit.head%
+
+
+ %sveltekit.body%
+
+
diff --git a/src/lib/global.css b/src/lib/global.css
new file mode 100644
index 0000000..b65b9a7
--- /dev/null
+++ b/src/lib/global.css
@@ -0,0 +1,17 @@
+@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&display=swap');
+
+@tailwind base;
+@tailwind utilities;
+
+body
+{
+ font-family: Archivo, sans-serif;
+ margin: 0;
+ height: 100%;
+ background: black;
+}
+
+html
+{
+ height: 100%;
+}
diff --git a/src/routes/+page.svelte b/src/routes/+page.svelte
new file mode 100644
index 0000000..61ea0bd
--- /dev/null
+++ b/src/routes/+page.svelte
@@ -0,0 +1,160 @@
+
+
+
+
+
+
+