feat: recreate admin dashboard using mantine

This commit is contained in:
Sonny
2024-11-08 18:05:00 +01:00
committed by Sonny
parent 6eb88871e8
commit 174a21288a
7 changed files with 276 additions and 10 deletions

View File

@@ -8,13 +8,14 @@ type CommonBase = {
type User = CommonBase & {
email: string;
name: string;
nickName: string;
fullname: string;
avatarUrl: string;
isAdmin: boolean;
lastSeenAt: string;
};
type Users = User[];
type UserWithCollections = User & {
collections: Collection[];
};