chore: remove junk

This commit is contained in:
enscribe 2024-09-10 10:36:58 -07:00
parent f6dcc302d4
commit 8f6872f739
No known key found for this signature in database
GPG key ID: 9BBD5C4114E25322
96 changed files with 1002 additions and 2485 deletions

View file

@ -1,7 +1,7 @@
import { defineCollection, z } from "astro:content";
import { defineCollection, z } from 'astro:content'
const blog = defineCollection({
type: "content",
type: 'content',
schema: z.object({
title: z.string(),
description: z.string(),
@ -10,10 +10,10 @@ const blog = defineCollection({
tags: z.array(z.string()).optional(),
}),
});
})
const publications = defineCollection({
type: "content",
type: 'content',
schema: z.object({
title: z.string(),
description: z.string(),
@ -27,6 +27,6 @@ const publications = defineCollection({
imgAlt: z.string().optional(),
pub: z.string().optional(),
}),
});
})
export const collections = { blog, publications };
export const collections = { blog, publications }