import Link from "next/link"; import { type ReactNode } from "react"; import { NavAuth } from "./components/nav-auth"; import { AdminNavLink } from "./components/admin-nav-link"; const NAV_LINKS = [ { href: "/tv", label: "TV" }, { href: "/guide", label: "Guide" }, { href: "/library", label: "Library" }, { href: "/dashboard", label: "Dashboard" }, { href: "/docs", label: "Docs" }, ]; export default function MainLayout({ children }: { children: ReactNode }) { return (
{children}
); }