mirror of
https://github.com/TheTaz25/denis.ergin.git
synced 2025-07-07 22:18:50 +00:00
initial setup
This commit is contained in:
commit
f29b97ac06
23 changed files with 5114 additions and 0 deletions
12
src/content/config.ts
Normal file
12
src/content/config.ts
Normal file
|
@ -0,0 +1,12 @@
|
|||
import { defineCollection, z } from 'astro:content';
|
||||
|
||||
const skillCollection = defineCollection({
|
||||
type: 'data',
|
||||
schema: z.object({
|
||||
skills: z.array(z.string())
|
||||
}),
|
||||
});
|
||||
|
||||
export const collections = {
|
||||
'skills': skillCollection,
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue