Mirror of the sourcecode for my blog, original repo: https://github.com/NobbZ/blog-nobbz-dev
at code-meta 626 B view raw
1--- 2// SPDX-FileCopyrightText: 2025 Norbert Melzer 3// SPDX-FileContributor: Norbert Melzer 4// 5// SPDX-License-Identifier: MIT 6 7import NavItem from "./NavItem.astro"; 8 9export interface Props { 10 class?: string; 11} 12 13const class_ = Astro.props.class ?? ""; 14--- 15 16<nav 17 id="side-nav" 18 class:list={[ 19 "border-4", 20 "border-surface2", 21 "m-1", 22 "p-1", 23 "rounded-[12px]", 24 class_, 25 ]} 26> 27 <ol> 28 <NavItem href="/blog">Blog</NavItem> 29 <NavItem href="/authors" spacer>Authors</NavItem> 30 <NavItem href="/sponsors" disabled spacer>Sponsors</NavItem> 31 <NavItem href="/imprint">Imprint</NavItem> 32 </ol> 33</nav>