frontend: initial commit

Signed-off-by: Nicolas Froger <nicolas@kektus.xyz>
This commit is contained in:
Nicolas Froger 2024-07-21 22:33:33 +02:00
commit 08d529c381
No known key found for this signature in database
19 changed files with 5714 additions and 0 deletions

View file

@ -0,0 +1,28 @@
<script setup>
import { RouterLink, RouterView } from 'vue-router'
</script>
<template>
<div class="header">
<a id="kektus-link" href="https://www.kektus.fr"><h1 id="kektus">kektus</h1></a>
<h1 style="font-weight: 300">carnet de voyage été 2024</h1>
</div>
<RouterView />
</template>
<style scoped>
.header {
position: fixed;
width: 100%;
top: 0;
z-index: 9;
backdrop-filter: blur(10px);
background-color: rgba(0, 0, 0, 0.1);
display: flex;
align-items: center;
}
.header h1 {
font-size: 15pt;
}
</style>