Add about page

This commit is contained in:
2026-02-05 15:13:32 +01:00
parent c07cca0e33
commit 41fe9f0345
5 changed files with 116 additions and 35 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