mirror of
https://github.com/Fluffy-Bean/website.git
synced 2025-06-02 00:33:14 +00:00
Add some of my Certificates to the page
This commit is contained in:
parent
683ece66db
commit
5c41d81288
10 changed files with 128 additions and 6 deletions
|
@ -22,7 +22,19 @@ const projectsCollection = defineCollection({
|
|||
}),
|
||||
});
|
||||
|
||||
const certificatesCollection = defineCollection({
|
||||
type: "data",
|
||||
schema: z.object({
|
||||
title: z.string(),
|
||||
provider: z.string(),
|
||||
achieved: z.date(),
|
||||
skills: z.array(z.string()).optional(),
|
||||
link: z.string().optional(),
|
||||
}),
|
||||
})
|
||||
|
||||
export const collections = {
|
||||
"posts": postsCollection,
|
||||
"projects": projectsCollection,
|
||||
"certificates": certificatesCollection,
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue