30 lines
729 B
TypeScript
30 lines
729 B
TypeScript
export default defineAppConfig({
|
|
site: {
|
|
name: 'Le Librodrome',
|
|
description: 'Une économie du don — enfin concevable. Un livre et 9 chansons, lecture guidée et écoute libre.',
|
|
url: 'https://librodrome.org',
|
|
},
|
|
header: {
|
|
height: '4rem',
|
|
nav: [
|
|
{ label: 'Accueil', to: '/' },
|
|
{ label: 'Lire', to: '/lire' },
|
|
{ label: 'Écouter', to: '/ecouter' },
|
|
{ label: 'À propos', to: '/a-propos' },
|
|
],
|
|
},
|
|
footer: {
|
|
credits: '© 2026 Le Librodrome — Production collective',
|
|
links: [
|
|
{ label: 'Mentions légales', to: '/mentions-legales' },
|
|
],
|
|
},
|
|
gratewizard: {
|
|
url: '/gratewizard-app/',
|
|
popup: {
|
|
width: 420,
|
|
height: 720,
|
|
},
|
|
},
|
|
})
|