Key figures, minor fixes
All checks were successful
Build and Deploy to Web Server / deploy (push) Successful in 17m42s

This commit is contained in:
2025-08-21 14:02:09 +09:30
parent 583e2ba10b
commit aa392b8122
17 changed files with 123 additions and 10 deletions

View File

@@ -11,6 +11,15 @@ const projects = defineCollection({
description: z.string(),
slug: z.string(),
ongoing: z.boolean().optional().default(false),
keyFigure: z
.array(
z.object({
title: z.string(),
name: z.string(),
href: z.string().optional()
})
)
.optional(),
frontPage: z
.object({
order: z.number()