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" }, ]; export default function MainLayout({ children }: { children: ReactNode }) { return (