add: tailwind css

This commit is contained in:
Dominik Natter
2025-03-26 14:30:47 +01:00
parent 56e90c202d
commit a3104cfeb0
10 changed files with 375 additions and 212 deletions

View File

@@ -261,6 +261,7 @@ export interface User {
emailVerified?: string | null;
name?: string | null;
image?: string | null;
type?: ('admin' | 'student') | null;
accounts?:
| {
id?: string | null;
@@ -391,6 +392,7 @@ export interface UsersSelect<T extends boolean = true> {
emailVerified?: T;
name?: T;
image?: T;
type?: T;
accounts?:
| T
| {