1
0
Fork 0
mirror of https://github.com/TheTaz25/denis.ergin.git synced 2025-07-11 00:38:48 +00:00

feat(knowledge-base): Build Web-Engineering-I introduction page with links to slides

This commit is contained in:
Denis Ergin 2024-10-18 11:52:19 +02:00
parent d207c35805
commit 8b2bbc4b56
9 changed files with 238 additions and 1 deletions

View file

@ -7,6 +7,17 @@ const skillCollection = defineCollection({
}),
});
const dhbwCollection = defineCollection({
type: 'content',
schema: z.object({
title: z.string(),
tags: z.array(z.string()),
staticPath: z.string(),
show: z.optional(z.boolean()),
}),
});
export const collections = {
'skills': skillCollection,
'dhbw': dhbwCollection,
}