Add social links resource and update README with comprehensive documentation

Co-authored-by: ArthurDanjou <29738535+ArthurDanjou@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2025-11-14 21:54:40 +00:00
parent 01f8ec098e
commit cbc93091e5
5 changed files with 270 additions and 23 deletions

View File

@@ -136,6 +136,33 @@ export default defineContentConfig({
}),
achievements: z.array(z.string())
})
}),
socials: defineCollection({
type: 'page',
source: 'socials.json',
schema: z.object({
github: z.object({
username: z.string(),
url: z.string().url(),
stats: z.object({
note: z.string()
})
}),
linkedin: z.object({
url: z.string().url()
}),
twitter: z.object({
url: z.string().url()
}),
discord: z.object({
url: z.string().url()
}),
website: z.object({
personal: z.string().url(),
mcp: z.string().url(),
status: z.string().url()
})
})
})
}
})