- Hero : animation fade-in/fade-out + swipe (useTypewriter composable + TypewriterText) - 3 axes : Autonomie numérique, économique, citoyenne (AxisBlock + AxisGrid) - Pages gestation avec présentations (wishBounty, trustWallet, Cloud libre) - Page /decision : plateforme Décision collective (lien Glibredecision) - Bloc événement distinct en bas des axes - Nav : Numérique / Économique / Citoyenne / Événement - Dark theme éclairci (bg 7→10%, surface 12→14%) - Suppression BookSection + GrateWizardTeaser (remplacés par AxisGrid) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
33 lines
936 B
TypeScript
33 lines
936 B
TypeScript
export default defineAppConfig({
|
|
site: {
|
|
name: 'Le Librodrome',
|
|
description: 'Une économie du don — enfin concevable. Un livre et des chansons, lecture guidée et écoute libre.',
|
|
url: 'https://librodrome.org',
|
|
},
|
|
header: {
|
|
height: '4rem',
|
|
nav: [
|
|
{ label: 'Numérique', to: '/#numerique' },
|
|
{ label: 'Économique', to: '/#economique' },
|
|
{ label: 'Citoyenne', to: '/#citoyenne' },
|
|
{ label: 'Événement', to: '/evenement' },
|
|
],
|
|
},
|
|
footer: {
|
|
credits: '© 2026 Le Librodrome — Productions collectives',
|
|
links: [
|
|
{ label: 'Mentions légales', to: '/mentions-legales' },
|
|
],
|
|
},
|
|
gratewizard: {
|
|
url: import.meta.dev ? 'http://localhost:3001' : 'https://gratewizard.axiom-team.fr',
|
|
popup: {
|
|
width: 420,
|
|
height: 720,
|
|
},
|
|
},
|
|
libredecision: {
|
|
url: import.meta.dev ? 'http://localhost:3002' : 'https://decision.laplank.org',
|
|
},
|
|
})
|