travel-steps/summer2024-frontend/src/App.vue
Nicolas Froger 227332e5d4
frontend: add shadcn vue, replace custom css with tailwind
Signed-off-by: Nicolas Froger <nicolas@kektus.xyz>
2024-07-22 02:25:34 +02:00

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>