--- 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; // 定义导航链接 --- {SITE_NAME} 输入关键词开始搜索 { NAV_LINKS.map((link) => ( {link.text} )) } 搜索 打开菜单 输入关键词开始搜索 { NAV_LINKS.map((link) => ( {link.text} )) } 切换主题
输入关键词开始搜索