Add about page

This commit is contained in:
2026-02-05 15:13:57 +01:00
parent 2971fb298e
commit aa6fa39f6a
10 changed files with 296 additions and 2 deletions

View File

@ -524,6 +524,15 @@ model TermsOfService {
version Int @default(autoincrement())
}
model About {
id String @id @default(cuid())
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
markdown String
version Int @default(autoincrement())
}
model User {
id String @id
name String