Updates and more

This commit is contained in:
2023-11-12 22:43:42 +01:00
parent 7450ecdabb
commit 3889f28eb8
43 changed files with 5188 additions and 322 deletions

View File

@@ -32,8 +32,18 @@ export const event = defineCollection({
})
})
export const modes = defineCollection({
type: "data",
schema: z.object({
translationKey: z.string(),
main: z.boolean(),
ranked: z.boolean().optional().default(false)
})
})
export const collections = {
'pages': pages,
'help': help,
'event': event
'event': event,
'modes': modes
}