initiation librodrome

This commit is contained in:
Yvv
2026-02-20 12:55:10 +01:00
commit 35e2897a73
208 changed files with 18951 additions and 0 deletions

View File

@@ -0,0 +1,74 @@
<template>
<Teleport to="body">
<Transition name="overlay">
<div
v-if="open"
class="fixed inset-0 z-50 bg-black/60 backdrop-blur-sm"
@click="emit('update:open', false)"
/>
</Transition>
<Transition name="slide-menu">
<nav
v-if="open"
class="fixed inset-y-0 right-0 z-50 w-72 bg-surface-600 border-l border-white/8 p-6 shadow-2xl"
aria-label="Menu mobile"
>
<div class="flex items-center justify-between mb-8">
<span class="font-display text-lg font-bold text-gradient">Menu</span>
<button
class="btn-ghost !p-2"
aria-label="Fermer le menu"
@click="emit('update:open', false)"
>
<div class="i-lucide-x h-5 w-5" />
</button>
</div>
<ul class="flex flex-col gap-2">
<li v-for="item in nav" :key="item.to">
<NuxtLink
:to="item.to"
class="flex items-center gap-3 rounded-lg px-4 py-3 text-base font-medium transition-colors hover:bg-white/5"
active-class="bg-primary/10 text-primary"
@click="emit('update:open', false)"
>
{{ item.label }}
</NuxtLink>
</li>
</ul>
</nav>
</Transition>
</Teleport>
</template>
<script setup lang="ts">
defineProps<{
open: boolean
nav: { label: string; to: string }[]
}>()
const emit = defineEmits<{
'update:open': [value: boolean]
}>()
</script>
<style scoped>
.overlay-enter-active,
.overlay-leave-active {
transition: opacity 0.3s;
}
.overlay-enter-from,
.overlay-leave-to {
opacity: 0;
}
.slide-menu-enter-active,
.slide-menu-leave-active {
transition: transform 0.3s var(--ease-out-expo);
}
.slide-menu-enter-from,
.slide-menu-leave-to {
transform: translateX(100%);
}
</style>

View File

@@ -0,0 +1,28 @@
<template>
<footer class="border-t border-white/8 bg-surface-600 pb-[var(--player-height)]">
<div class="container-content px-4 py-8">
<div class="flex flex-col items-center gap-4 md:flex-row md:justify-between">
<!-- Credits -->
<p class="text-sm text-white/40">
{{ site?.footer.credits }}
</p>
<!-- Links -->
<nav class="flex items-center gap-4" aria-label="Liens du pied de page">
<NuxtLink
v-for="link in site?.footer.links"
:key="link.to"
:to="link.to"
class="text-sm text-white/40 transition-colors hover:text-white/70"
>
{{ link.label }}
</NuxtLink>
</nav>
</div>
</div>
</footer>
</template>
<script setup lang="ts">
const { data: site } = await useSiteContent()
</script>

View File

@@ -0,0 +1,41 @@
<template>
<header class="sticky top-0 z-40 border-b border-white/8 bg-surface-bg/80 backdrop-blur-xl">
<div class="container-content flex h-[var(--header-height)] items-center justify-between px-4">
<!-- Logo -->
<NuxtLink to="/" class="flex items-center gap-2 font-display text-lg font-bold tracking-tight">
<div class="i-lucide-book-open h-6 w-6 text-primary" />
<span class="text-gradient">{{ site?.identity.name }}</span>
</NuxtLink>
<!-- Desktop navigation -->
<nav class="hidden md:flex items-center gap-1" aria-label="Navigation principale">
<NuxtLink
v-for="item in site?.navigation"
:key="item.to"
:to="item.to"
class="btn-ghost text-sm"
active-class="text-white! bg-white/5"
>
{{ item.label }}
</NuxtLink>
</nav>
<!-- Mobile menu button -->
<button
class="btn-ghost md:hidden !p-2"
aria-label="Menu"
@click="isMobileMenuOpen = true"
>
<div class="i-lucide-menu h-5 w-5" />
</button>
</div>
<!-- Mobile menu -->
<LayoutNavMobile v-model:open="isMobileMenuOpen" :nav="site?.navigation ?? []" />
</header>
</template>
<script setup lang="ts">
const { data: site } = await useSiteContent()
const isMobileMenuOpen = ref(false)
</script>