--- import { getLanguageFromURL } from '../../languages'; import { SIDEBAR } from '../../config'; type Props = { currentPage: string; }; const { currentPage } = Astro.props as Props; const currentPageMatch = currentPage.endsWith('/') ? currentPage.slice(1, -1) : currentPage.slice(1); const langCode = getLanguageFromURL(currentPage); const sidebar = SIDEBAR[langCode]; ---