osaet/frontend/site/src/components/SiteNav.astro

14 lines
303 B
Text

---
const links = [
{ href: '/', label: '首页' },
{ href: '/archive/', label: '归档' },
{ href: '/tags/', label: '标签' },
{ href: '/rss.xml', label: 'RSS' }
];
---
<nav class="site-nav" aria-label="Primary">
{links.map((link) => (
<a href={link.href}>{link.label}</a>
))}
</nav>