Update Bridge file layout
This commit is contained in:
parent
2c43e81436
commit
b0fb643b6a
47 changed files with 2488 additions and 2087 deletions
14
apps/bridge-frontend/app/(login)/login/page.tsx
Normal file
14
apps/bridge-frontend/app/(login)/login/page.tsx
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
import { Metadata } from "next";
|
||||
import { getSession } from "next-auth/react";
|
||||
import { Login } from "@/app/_components/Login";
|
||||
|
||||
export const dynamic = "force-dynamic";
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Login",
|
||||
};
|
||||
|
||||
export default async function Page() {
|
||||
const session = await getSession();
|
||||
return <Login session={session} />;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue