--- import { SITE_NAME, NAV_LINKS } from "@/consts.ts"; import ThemeToggle from "./ThemeToggle.astro"; // 获取当前路径 const currentPath = Astro.url.pathname; // 移除结尾的斜杠以统一路径格式(保留根路径的斜杠) const normalizedPath = currentPath === "/" ? "/" : currentPath.endsWith("/") ? currentPath.slice(0, -1) : currentPath; // 定义导航链接 ---