import Link from "next/link"; import { type ReactNode } from "react"; 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 }) { return (
{children}
); }