frontend: initial commit
Signed-off-by: Nicolas Froger <nicolas@kektus.xyz>
This commit is contained in:
commit
08d529c381
19 changed files with 5714 additions and 0 deletions
28
summer2024-frontend/src/App.vue
Normal file
28
summer2024-frontend/src/App.vue
Normal 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>
|
||||
Loading…
Add table
Add a link
Reference in a new issue