- Hero : réécriture composable timeout pur (plus de Transition callbacks) Animation fade opacity 1s très douce, lisible - Icônes : safelist UnoCSS dans nuxt.config.ts (résout pastilles vides) - Menu : mis à jour site.yml (Numérique/Économique/Citoyenne/Événement) - Blocs : card entière cliquable, zone actions séparée (border-top) - Économie du don : lié à /modele-eco (page chapitres préservée) - Tarifs de l'eau : bouton SejeteralO (localhost:3009 / collectivites.librodrome.org) - Dark theme fort : bg 220 12% 15%, surface 19%, surface-light 24% - Config SejeteralO + Glibredecision dans app.config.ts Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
30 lines
831 B
TypeScript
30 lines
831 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',
|
|
},
|
|
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',
|
|
},
|
|
sejeteral0: {
|
|
url: import.meta.dev ? 'http://localhost:3009' : 'https://collectivites.librodrome.org',
|
|
},
|
|
})
|