From cbdb2ee1547fcfbef8c874da60b17eee80b5fa18 Mon Sep 17 00:00:00 2001 From: Ariel Costas Guerrero Date: Sun, 12 Oct 2025 22:49:13 +0200 Subject: Get rid of trajectory and portfolio --- src/content.config.ts | 16 ---------------- 1 file changed, 16 deletions(-) (limited to 'src/content.config.ts') 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, }; -- cgit v1.3