import { auth } from '@clerk/nextjs/server'; import { Navbar } from './_components/Navbar'; const DashbordLayout = async ({ children }: { children: React.ReactNode }) => { await auth.protect(); return (
{children}
); }; export default DashbordLayout;