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