mirror of
https://github.com/ArthurDanjou/artsite.git
synced 2026-01-14 15:54:13 +01:00
48 lines
1.0 KiB
TypeScript
48 lines
1.0 KiB
TypeScript
import { defineCollection, z } from '@nuxt/content'
|
|
|
|
export const collections = {
|
|
main: defineCollection({
|
|
type: 'page',
|
|
source: 'home/*.md',
|
|
}),
|
|
projects: defineCollection({
|
|
type: 'page',
|
|
source: 'projects/*.md',
|
|
schema: z.object({
|
|
slug: z.string(),
|
|
title: z.string(),
|
|
description: z.string(),
|
|
publishedAt: z.date(),
|
|
tags: z.array(z.string()),
|
|
cover: z.string(),
|
|
favorite: z.boolean().optional(),
|
|
}),
|
|
}),
|
|
writings: defineCollection({
|
|
type: 'page',
|
|
source: 'writings/*.md',
|
|
schema: z.object({
|
|
slug: z.string(),
|
|
title: z.string(),
|
|
description: z.string(),
|
|
publishedAt: z.date(),
|
|
readingTime: z.number(),
|
|
cover: z.string(),
|
|
tags: z.array(z.string()),
|
|
}),
|
|
}),
|
|
uses: defineCollection({
|
|
type: 'data',
|
|
source: 'uses/*.json',
|
|
schema: z.object({
|
|
name: z.string(),
|
|
description: z.object({
|
|
en: z.string(),
|
|
fr: z.string(),
|
|
es: z.string(),
|
|
}),
|
|
category: z.string(),
|
|
}),
|
|
}),
|
|
}
|