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
}

View File

@@ -0,0 +1,4 @@
{
"translationKey": "as",
"main": true
}

View File

@@ -0,0 +1,5 @@
{
"translationKey": "mwg",
"main": true,
"ranked": true
}

View File

@@ -0,0 +1,5 @@
{
"translationKey": "wg",
"main": true,
"ranked": true
}

View File

@@ -0,0 +1,4 @@
{
"translationKey": "ws",
"main": true
}