Compare commits

..

1 Commits

Author SHA1 Message Date
patrick 19f1ab3996 fix: remove deprecated link property from project template
Generate a build and push to Cloudflare Pages / Build and Deploy to Cloudflare Pages (push) Successful in 1m27s
2026-05-14 13:34:11 -04:00
+2 -1
View File
@@ -24,9 +24,10 @@ const projects = defineCollection({
description: z.string(),
tags: z.array(z.string()),
image: image(),
link: z.string().url().optional(),
links: z.array(z.object({
label: z.string(),
url: z.url()
url: z.string().url()
})).optional(),
order: z.number().optional(),
startDate: z.coerce.date().optional(),