--- import { localizePath } from 'astro-i18next'; import OffCanvas from '@components/OffCanvas/OffCanvas.astro'; import OffCanvasBtn from '@components/OffCanvas/OffCanvasBtn.astro'; import LangSelector from '@components/LangSelector.astro'; const links = [ { href: localizePath('/'), text: 'Home' }, { href: localizePath('/blog'), text: 'Blog' }, { href: localizePath('/projects'), text: 'Projects' }, { href: localizePath('/curriculum'), text: 'Curriculum' }, { href: localizePath('/contact'), text: 'Contact' }, ]; ---