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