feat: implement a simple navbar

This commit is contained in:
2024-09-23 20:56:07 +02:00
committed by florian_briand
parent 167a1fbbc2
commit 3bd0a02b62
4 changed files with 54 additions and 1 deletions

14
frontend/pages/CPS.vue Normal file
View File

@ -0,0 +1,14 @@
<template>
<div>
<h1 class="text-xl">Carte CPS</h1>
</div>
</template>
<script>
export default {
name: 'CPSCard',
data() {
return {};
}
};
</script>

22
frontend/pages/index.vue Normal file
View File

@ -0,0 +1,22 @@
<template>
<div>
<h1 class="text-xl">Welcome to your {{ appName }}!</h1>
</div>
</template>
<script>
export default {
name: 'HomePage',
data() {
return {
appName: 'Nuxt App'
};
}
};
</script>
<style scoped>
h1 {
color: #42b983;
}
</style>