Add comprehensive profile enhancements: languages, certifications, profile info, and fix duplicate resource ID bug

Co-authored-by: ArthurDanjou <29738535+ArthurDanjou@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2025-11-14 21:52:15 +00:00
parent be7a6b7371
commit 01f8ec098e
8 changed files with 267 additions and 2 deletions

View File

@@ -0,0 +1,10 @@
import { queryCollection } from '@nuxt/content/server'
export default defineCachedEventHandler(async (event) => {
return await queryCollection(event, 'languages')
.where('extension', '=', 'json')
.first()
}, {
name: 'languages-list',
maxAge: 3600 // 1 hour
})