15 lines
478 B
Vue
15 lines
478 B
Vue
<script setup>
|
|
import { RouterLink, RouterView } from 'vue-router'
|
|
</script>
|
|
|
|
<template>
|
|
<div class="fixed w-full top-0 z-50 flex items-center backdrop-blur-md bg-black/10">
|
|
<a href="https://www.kektus.fr"
|
|
><h1 id="kektus" class="font-bold select-none mx-6 my-3 text-2xl hover:text-3xl transition-all duration-300">kektus</h1></a
|
|
>
|
|
<h1 class="font-light text-lg">carnet de voyage été 2024</h1>
|
|
</div>
|
|
<RouterView />
|
|
</template>
|
|
|
|
<style scoped></style>
|