Add navbar

This commit is contained in:
2023-01-14 15:27:48 +01:00
parent 0d7c5309a2
commit 3a078e0195
11 changed files with 1478 additions and 125 deletions

View File

@ -1,9 +1,14 @@
<script setup lang="ts">
</script>
<template>
<Navbar />
<main>
<h1 class="text-5xl font-bold">
Hello world
</h1>
</main>
</template>
<script setup lang="ts">
import Navbar from "@/components/Navbar/Navbar.vue";
</script>