initial layout with navbar and pages

This commit is contained in:
padreug 2025-02-02 18:01:38 +01:00
parent 0c6844cbef
commit aa18a42b4b
9 changed files with 329 additions and 46 deletions

View file

@ -1,17 +1,14 @@
<script setup lang="ts">
import HelloWorld from './components/HelloWorld.vue'
import Navbar from './components/layout/Navbar.vue'
</script>
<template>
<div>
<a href="https://vite.dev" target="_blank">
<img src="/vite.svg" class="logo" alt="Vite logo" />
</a>
<a href="https://vuejs.org/" target="_blank">
<img src="./assets/vue.svg" class="logo vue" alt="Vue logo" />
</a>
<div class="min-h-screen bg-background">
<Navbar />
<main>
<router-view></router-view>
</main>
</div>
<HelloWorld msg="Vite + Vue" />
</template>
<style scoped>