FEAT: side A/B
All checks were successful
Deploy App / build (push) Successful in 14s
Deploy App / deploy (push) Successful in 9s

This commit is contained in:
valere
2025-11-15 21:56:37 +01:00
parent 3424d2d6fc
commit 1b8b998622
49 changed files with 563 additions and 822 deletions

View File

@@ -1,31 +1,10 @@
<template>
<div class="w-full min-h-screen flex flex-col items-center bg-gray-50">
<div class="w-full flex flex-col items-center">
<!-- Header avec logo -->
<header
class="w-full bg-white shadow-sm overflow-hidden transition-all duration-300 ease-in-out"
:class="{ 'h-0 py-0': uiStore.getSelectedBox, 'py-4 h-auto': !uiStore.getSelectedBox }"
>
<div class="max-w-7xl mx-auto w-full flex justify-center">
<a href="/" class="inline-block">
<logo />
</a>
</div>
</header>
<!-- Contenu principal -->
<main>
<slot />
</main>
<slot />
<!-- Player de musique fixe en bas -->
<searchModal />
<loader />
<Player class="w-full border-t border-gray-200" />
</div>
</template>
<script setup>
import { useUiStore } from '~/store/ui'
const uiStore = useUiStore()
</script>