Base nuxt layout

This commit is contained in:
Alexis
2024-03-21 17:14:11 +01:00
parent 1abf555519
commit b86cf52839
36 changed files with 9886 additions and 3462 deletions

18
app.vue Normal file
View File

@@ -0,0 +1,18 @@
<template>
<div class="wrapper">
<Navbar />
<main class="p-4">
<NuxtPage />
</main>
<Footer />
</div>
</template>
<style lang="scss" scoped>
.wrapper {
min-height: 100dvh;
min-height: 100vh;
display: grid;
grid-template-rows: auto 1fr auto;
}
</style>