feat: add Docs link to navigation in MainLayout

This commit is contained in:
2026-03-11 22:04:15 +01:00
parent b2f40054fc
commit 2caad1670d
2 changed files with 880 additions and 4 deletions

View File

@@ -5,6 +5,7 @@ import { NavAuth } from "./components/nav-auth";
const NAV_LINKS = [
{ href: "/tv", label: "TV" },
{ href: "/dashboard", label: "Dashboard" },
{ href: "/docs", label: "Docs" },
];
export default function MainLayout({ children }: { children: ReactNode }) {