implemented login

This commit is contained in:
2024-01-06 10:50:27 +01:00
parent 60a89b88ac
commit 52d4c35c2e
14 changed files with 257 additions and 35 deletions

6
app/lib/types/User.ts Normal file
View File

@@ -0,0 +1,6 @@
export type User = {
id: string;
name: string;
email: string;
password: string;
};