aboutsummaryrefslogtreecommitdiff
path: root/apps/web/app/(dash)/layout.tsx
blob: 3ec8926ed89dada09feed0115fc151fa09152480 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
import Header from "./header";
import Menu from "./menu";
import { redirect } from "next/navigation";
import { auth } from "../../server/auth";
import { Toaster } from "@repo/ui/shadcn/sonner";

async function Layout({ children }: { children: React.ReactNode }) {
  const info = await auth();

  if (!info) {
    return redirect("/signin");
  }

  return (
    <main className="h-screen flex flex-col p-4 relative ">
      <Header />

      <Menu />

      {children}

      <Toaster />
    </main>
  );
}

export default Layout;