export default defineNuxtPlugin(() => { const narrator = useNarrator() const router = useRouter() const progressionStore = useProgressionStore() const routeContextMap: Record = { '/projets': 'projects', '/en/projects': 'projects', '/competences': 'skills', '/en/skills': 'skills', '/temoignages': 'testimonials', '/en/testimonials': 'testimonials', '/parcours': 'journey', '/en/journey': 'journey', } const announcedSections = new Set() router.afterEach((to) => { const zone = routeContextMap[to.path] if (zone && !announcedSections.has(zone)) { announcedSections.add(zone) narrator.showTransition(zone) } }) watch( () => progressionStore.completionPercent, (percent) => { narrator.showEncouragement(percent) }, ) watch( () => progressionStore.contactUnlocked, (unlocked, wasUnlocked) => { if (unlocked && !wasUnlocked) { narrator.showContactUnlocked() } }, ) })