login draft

This commit is contained in:
Timur Ercan
2022-12-06 19:16:34 +01:00
parent 97bae407f8
commit e9979a2c64
7 changed files with 144 additions and 18 deletions

9
apps/web/pages/login.tsx Normal file
View File

@ -0,0 +1,9 @@
import Login from "../components/login";
export default function LoginPage() {
return (
<>
<Login></Login>
</>
);
}