feat: intégrer les informations de contact et ajuster les priorités des liens sociaux

This commit is contained in:
2025-12-23 23:34:07 +01:00
parent 466baf1eb8
commit 9ee02a36a3
5 changed files with 26 additions and 30 deletions

View File

@@ -3,6 +3,7 @@ export async function useContent() {
const projects = await queryCollection('projects').where('extension', '=', 'md').order('publishedAt', 'DESC').all()
const education = await queryCollection('education').where('extension', '=', 'md').order('startDate', 'DESC').all()
const experiences = await queryCollection('experiences').where('extension', '=', 'md').order('startDate', 'DESC').all()
const contact = await queryCollection('contact').where('extension', '=', 'json').first()
return { skills, projects, education, experiences }
return { skills, projects, education, experiences, contact }
}