--- import { getLocaleFromUrl, getLocalizedUrl } from '../utils/i18n'; const locale = getLocaleFromUrl(Astro.url); const pathname = Astro.url.pathname; const currentPath = pathname.replace(new RegExp(`^/${locale}`), '') || '/'; const languages = [ { code: 'de', name: 'Deutsch' }, { code: 'en', name: 'English' } ]; ---