--- import '../styles/global.css'; import { siblingPath, hrefFor, navFor, ctaLabelFor } from '../i18n/routes'; const { title = 'VillaFleurie', lang = 'fr', description = 'Séjours confortables au Gosier pour couples et petites familles' } = Astro.props; const pathname = Astro.url.pathname; const altFr = siblingPath(pathname, 'fr'); const altEn = siblingPath(pathname, 'en'); const nav = navFor(lang); const ctaLabel = ctaLabelFor(lang); const homeHref = hrefFor('home', lang); ---