From 442cab6026f71d5b4907eec8fc7d51140b058217 Mon Sep 17 00:00:00 2001 From: Arthur DANJOU Date: Thu, 18 Dec 2025 21:07:27 +0100 Subject: [PATCH] =?UTF-8?q?fix:=20supprimer=20les=20configurations=20inuti?= =?UTF-8?q?lis=C3=A9es=20et=20ajouter=20une=20nouvelle=20entr=C3=A9e=20de?= =?UTF-8?q?=20navigation=20pour=20le=20chat?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- nuxt.config.ts | 7 ------- types/index.ts | 16 +--------------- 2 files changed, 1 insertion(+), 22 deletions(-) diff --git a/nuxt.config.ts b/nuxt.config.ts index 4ab49fa..af2ea81 100644 --- a/nuxt.config.ts +++ b/nuxt.config.ts @@ -73,13 +73,6 @@ export default defineNuxtConfig({ i18n: { strategy: 'no_prefix', - compilation: { - strictMessage: false, - }, - bundle: { - fullInstall: false, - dropMessageCompiler: true, - }, locales: [ { label: 'English', diff --git a/types/index.ts b/types/index.ts index 81ebcca..b15e0a5 100644 --- a/types/index.ts +++ b/types/index.ts @@ -123,21 +123,6 @@ export const activityMessages: Record<'en' | 'fr' | 'es', ActivityMessages> = { }, } -export interface Tag { - label: string - title?: string - translation: string -} - -export const TAGS: readonly Tag[] = [ - { label: 'R', translation: 'tags.r' }, - { label: 'AI', translation: 'tags.ai' }, - { label: 'Data', translation: 'tags.data' }, - { label: 'Web', translation: 'tags.web' }, - { label: 'Python', translation: 'tags.python' }, - { label: 'Maths', translation: 'tags.maths' }, -] as const - export const socials = [ { icon: 'i-ph-x-logo-duotone', label: 'Twitter', to: 'https://twitter.com/ArthurDanj' }, { icon: 'i-ph-github-logo-duotone', label: 'GitHub', to: 'https://github.com/ArthurDanjou' }, @@ -156,6 +141,7 @@ interface Nav { export const navs: readonly Nav[] = [ { label: { en: 'home', fr: 'accueil', es: 'inicio' }, to: '/', icon: 'house-duotone' }, + { label: { en: 'chat', fr: 'chat', es: 'chat' }, to: '/', icon: 'chat-circle-dots-duotone' }, { label: { en: 'resume', fr: 'cv', es: 'currĂ­culum' }, icon: 'address-book-duotone',