23 lines
510 B
TypeScript
23 lines
510 B
TypeScript
import { auth } from "@/auth";
|
|
import { redirect } from "next/navigation";
|
|
import Providers from "@/components/Providers";
|
|
import Sidebar from "@/components/Sidebar";
|
|
|
|
export default async function DashboardLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}) {
|
|
const session = await auth();
|
|
if (!session) redirect("/login");
|
|
|
|
return (
|
|
<Providers>
|
|
<div className="app-layout">
|
|
<Sidebar />
|
|
<div className="main-content">{children}</div>
|
|
</div>
|
|
</Providers>
|
|
);
|
|
}
|