Lucien Cartier-Tilet c81ba2536c
Some checks failed
CI / Check Style (push) Failing after 57s
CI / Run Clippy (push) Has been cancelled
CI / Run Tests (push) Has been cancelled
feat(frontend): initial work, add tailwind and other dependencies
Also create a few pages and the beginning of a header
2024-12-05 02:02:12 +01:00

12 lines
200 B
Vue

<script setup lang="ts">
import { RouterView } from 'vue-router';
import Header from '@/components/Header.vue';
</script>
<template>
<Header />
<RouterView />
</template>
<style scoped></style>