feat: add credits component and update localization for multiple languages

This commit is contained in:
2025-09-05 13:32:24 +02:00
parent addb63a792
commit 16cf818f0d
5 changed files with 88 additions and 3 deletions

View File

@@ -3,6 +3,7 @@ import type { ChatMessage } from '~~/types'
import { ChatState, ChatType } from '~~/types'
import ToolActivity from '~/components/tool/Activity.vue'
import ToolContact from '~/components/tool/Contact.vue'
import ToolCredits from '~/components/tool/Credits.vue'
import ToolDuplicated from '~/components/tool/Duplicated.vue'
import ToolHobbies from '~/components/tool/Hobbies.vue'
import ToolLanguage from '~/components/tool/Language.vue'
@@ -44,7 +45,7 @@ const componentMap: Record<ChatType, Component | undefined> = {
[ChatType.ABOUT]: undefined,
[ChatType.EXPERIENCES]: undefined,
[ChatType.STATUS]: undefined,
[ChatType.CREDITS]: undefined,
[ChatType.CREDITS]: ToolCredits,
[ChatType.RESUME]: undefined,
}