--- interface Props { title: string; } const { title } = Astro.props; const path = Astro.url.pathname; const links = [ { href: "/admin", label: "文章" }, { href: "/admin/content/service", label: "服務" }, { href: "/admin/content/feature", label: "特色" }, { href: "/admin/content/step", label: "流程" }, { href: "/admin/content/faq", label: "常見問題" }, { href: "/admin/cases", label: "案例" }, { href: "/admin/settings", label: "設定" }, { href: "/admin/ai", label: "AI 生成" }, ]; const isActive = (href: string) => href === "/admin" ? path === "/admin" : path === href || path.startsWith(href + "/"); ---