import { DashboardProvider } from "~/providers/dashboard-provider"; import { NextAuthProvider } from "~/providers/next-auth"; import { DashboardLayout } from "./dasboard-layout"; export const dynamic = "force-static"; export default function AuthenticatedDashboardLayout({ children, }: { children: React.ReactNode; }) { return ( {children} ); }