---
const pathname = Astro.url.pathname;
const navItems = [
{ href: '/', label: '首页' },
{ href: '/product', label: '产品' },
{ href: '/philosophy', label: '理念' },
];
const isActive = (href: string) => {
if (href === '/') {
return pathname === '/';
}
return pathname.startsWith(href);
};
---