diff --git a/README.md b/README.md index b28a1414f..eb8a13779 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,34 @@ Create personalized sales videos using generated video content and AI-generated ## 💽 DB Schema -TBD +```mermaid +erDiagram + users { + uuid id PK + string email UK + string full_name + text password_hash + text password_salt + datetime created_at + datetime updated_at + } + videos { + uuid id PK + uuid user_id FK + string name + string url + datetime created_at + datetime updated_at + } + files { + uuid id PK + string url + enum type "Values: 'video', 'photo'" + datetime created_at + datetime updated_at + } + users ||--o{ videos : have +``` ## 🏃‍♂️ Simple Start diff --git a/frontend/src/bundles/auth/pages/auth.tsx b/frontend/src/bundles/auth/pages/auth.tsx index 26f0ef42e..deae7cbd2 100644 --- a/frontend/src/bundles/auth/pages/auth.tsx +++ b/frontend/src/bundles/auth/pages/auth.tsx @@ -55,7 +55,7 @@ const Auth: React.FC = () => { }; return ( - + {/* TODO: Replace with valid loader */} {dataStatus === DataStatus.PENDING && (

@@ -64,7 +64,12 @@ const Auth: React.FC = () => { )}

{getScreen(pathname)}
{/* TODO: Add logo */} -
LOGO
+
+ LOGO +
); };