Initial commit

This commit is contained in:
Mawoka
2022-02-27 21:23:57 +01:00
commit 1805d6fe98
46 changed files with 4453 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
<script lang="ts">
export let title: string;
export let description: string;
</script>
<div class='flex flex-col justify-center w-screen h-screen'>
<h1 class='text-7xl text-center'>{title}</h1>
<p class='text-3xl pt-8 text-center'>{description}</p>
</div>