| Numéro du ticket | Titre du ticket | |------------------|-----------------| | | | ## Description de la PR ## Modification du .env ## Check list - [ ] Pas de régression - [ ] TU/TI/TF rédigée - [ ] TU/TI/TF OK - [ ] CHANGELOG modifié Reviewed-on: #48 Co-authored-by: tristan <tristan@yuno.malio.fr> Co-committed-by: tristan <tristan@yuno.malio.fr>
25 lines
575 B
Vue
25 lines
575 B
Vue
<template>
|
|
<div class="flex h-screen">
|
|
<MalioSidebar :sections="navSections">
|
|
<template #logo>
|
|
<NuxtLink to="/">
|
|
<img src="/LOGO_MALIO.png" alt="Malio">
|
|
</NuxtLink>
|
|
</template>
|
|
<template #logo-collapsed>
|
|
<NuxtLink to="/">
|
|
<img src="/LOGO_MALIO_COLLAPSED.png" alt="Malio">
|
|
</NuxtLink>
|
|
</template>
|
|
</MalioSidebar>
|
|
|
|
<main class="flex-1 overflow-y-auto p-6">
|
|
<slot />
|
|
</main>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import {navSections} from '../playground.nav'
|
|
</script>
|