Add navbar

This commit is contained in:
2023-01-14 15:27:48 +01:00
parent a3f837361b
commit 54c8028b7a
11 changed files with 1478 additions and 125 deletions
+14 -6
View File
@@ -1,7 +1,15 @@
<script setup lang="ts">
import { RouterView } from "vue-router"
</script>
<template>
<RouterView />
</template>
<div class="bg-white text-gray-900
dark:bg-gray-900 min-h-screen dark:text-slate-50">
<RouterView />
</div>
</template>
<script setup lang="ts">
import { onMounted } from "vue";
import { RouterView } from "vue-router";
onMounted(() => {
document.documentElement.classList.add("dark");
})
</script>