diff options
| author | Ariel Costas Guerrero <ariel@costas.dev> | 2025-10-12 22:49:13 +0200 |
|---|---|---|
| committer | Ariel Costas Guerrero <ariel@costas.dev> | 2025-10-12 22:49:13 +0200 |
| commit | cbdb2ee1547fcfbef8c874da60b17eee80b5fa18 (patch) | |
| tree | f1adc98515c2ac7681dcd0902b9ebcc2997d6b73 /src/content.config.ts | |
| parent | dcc806eff41da24ee6b5984d011f62bc9f4f00ee (diff) | |
Get rid of trajectory and portfolio
Diffstat (limited to 'src/content.config.ts')
| -rw-r--r-- | src/content.config.ts | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/src/content.config.ts b/src/content.config.ts index acaaf8a..b5fca4e 100644 --- a/src/content.config.ts +++ b/src/content.config.ts @@ -11,22 +11,6 @@ const blog = defineCollection({ }), }); -const portfolio = defineCollection({ - loader: glob({ pattern: "**/*.{md,mdx}", base: "src/data/portfolio" }), - schema: z.object({ - title: z.string(), - description: z.string(), - technologies: z.array(z.string()), - githubLink: z.string().url().optional(), - onlineLink: z.string().url().optional(), - demoLink: z.string().url().optional(), - images: z.array( - z.object({ src: z.string(), alt: z.string() }) - ).default([]) - }), -}); - export const collections = { blog, - portfolio, }; |
