Files
ncd-fe/packages/website/src/components/Header.astro
nicole mikołajczyk 05c7ae7f2f website: docs
Signed-off-by: nicole mikołajczyk <git@mkljczk.pl>
2026-03-08 00:56:12 +01:00

35 lines
598 B
Plaintext

---
import type { CollectionEntry } from "astro:content";
import BaseHeader from "@mkljczk/astro-theme/components/Header.astro";
interface Props {
docsNav?: {
name: string;
items: CollectionEntry<"docs">[];
}[];
}
const { docsNav } = Astro.props;
const navItems = [
{
label: "Docs",
href: "/docs/",
},
{
label: "Source code",
href: "https://codeberg.org/mkljczk/nicolium",
target: "_blank",
},
];
---
<BaseHeader
siteTitle="Nicolium"
homeHref="/"
menuExpandTitle="Expand"
menuCollapseTitle="Collapse"
navItems={navItems}
docsNav={docsNav}
/>