Initial commit

This commit is contained in:
Oliver Traber 2021-11-15 18:21:18 +01:00
commit 97917fb531
Signed by: Bluemedia
GPG key ID: C7BA47275B086E2C
21 changed files with 9366 additions and 0 deletions

23
src/components/Navbar.vue Normal file
View file

@ -0,0 +1,23 @@
<template>
<div class="navbar">
<router-link to="/">Home</router-link>
</div>
</template>
<script>
export default {
name: "Navbar",
};
</script>
<style scoped>
.navbar {
height: 50px;
display: flex;
justify-content: left;
flex-wrap: nowrap;
overflow: hidden;
background-color: #fafafc;
box-shadow: 0 1px 6px 0 #888;
}
</style>