release 0.3.4
This commit is contained in:
8
apps/web/ui/layout/nav.tsx
Normal file
8
apps/web/ui/layout/nav.tsx
Normal file
@@ -0,0 +1,8 @@
|
||||
import Navbar from "./navbar";
|
||||
import { getServerSession } from "next-auth/next";
|
||||
import { authOptions } from "app/api/auth/[...nextauth]/route";
|
||||
|
||||
export default async function Nav() {
|
||||
const session = await getServerSession(authOptions);
|
||||
return <Navbar session={session} />;
|
||||
}
|
Reference in New Issue
Block a user