kamrify's picture
Add documentation pages
06ea972
raw
history blame contribute delete
282 Bytes
import { z, defineCollection } from "astro:content";
const guidesCollection = defineCollection({
type: "content",
schema: z.object({
groupTitle: z.string(),
title: z.string(),
sort: z.number(),
}),
});
export const collections = {
guides: guidesCollection,
};