import { Header } from '@/components/layout'; import { auth } from '@/lib/auth'; export default async function DashboardLayout({ children, }: { children: React.ReactNode; }) { const session = await auth(); return (