initial commit

This commit is contained in:
Laurent
2025-02-26 13:23:50 +01:00
commit 02c95eba71
28 changed files with 7113 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
<script setup lang="ts">
</script>
<template>
<div class="LayoutDefault">
<nav class="LayoutDefault__nav">
<router-link to="/">Home</router-link> |
<router-link to="/about">About</router-link>
</nav>
<main class="LayoutDefault__main">
<slot />
</main>
<footer class="LayoutDefault__footer">Blank footer</footer>
</div>
</template>
<style scoped>
nav {
text-decoration: none;
}
</style>