--- import { ThemeSelector } from "./ThemeSelector" import NavbarSkeleton from "./NavbarSkeleton.astro"; import { LangSwitcher } from "./LangSwitcher"; import { NavButton } from "./NavButton"; import { useTranslations, getLangFromUrl } from "../i18n/utils"; function selected(path) { var currentURL = Astro.url.pathname .replace(Astro.currentLocale + "/", "") || "/" if( path == "/blog" && currentURL.startsWith("/blog") ){ return (true); } return ( currentURL == path ); } const locale = Astro.currentLocale ? Astro.currentLocale : "en" const t = useTranslations(getLangFromUrl(Astro.url)); ---