feat: complete profile page

This commit is contained in:
Hamzat Victor
2024-11-11 22:02:34 +01:00
parent 00e51205cf
commit 105eab9bad
16 changed files with 1172 additions and 485 deletions

1
frontend/lib/constant.ts Normal file
View File

@ -0,0 +1 @@
export const MAX_FREE_GENERATION = 1000

View File

@ -19,6 +19,8 @@ export type Sandbox = {
visibility: "public" | "private"
createdAt: Date
userId: string
likeCount: number
viewCount: number
usersToSandboxes: UsersToSandboxes[]
}