diff --git a/src/assets/img/potato.png b/src/assets/img/potato.png new file mode 100644 index 0000000..31a2276 Binary files /dev/null and b/src/assets/img/potato.png differ diff --git a/src/assets/localization/en/localization.json b/src/assets/localization/en/localization.json index cd85b2a..2da13b2 100644 --- a/src/assets/localization/en/localization.json +++ b/src/assets/localization/en/localization.json @@ -34,7 +34,7 @@ "disblock":{ "title": "Disblock", "desc": "Disblock is a project about a Discord bot. A large number of users want to customize their Discord servers with bots, but lacks the coding skills. Disblock is a way to assemble easily his own bot using blocks that can describe what to do, and when.", - "button_text": "Open the project", + "button_text": "Open the archive", "button2_text": "See on Github", "date": "From 2021 to 2025" }, @@ -71,9 +71,15 @@ }, "ia_assistant":{ "title": "Personal Assistant", - "desc": "This project aims to create an AI agent with tools embedded, as a personal assistant. Built using Ollama, LangGraph, ...", + "desc": "This project aims to create an AI agent with tools embedded, as a personal assistant. Built using Ollama, LangGraph, ... Paused for now.", "button_text": "See on Github", "date": "Since June 2025" + }, + "potato_research":{ + "title": "Research project based on potatoes", + "desc": "Details are not yet available, but a Potatoes-related software is under active development !", + "button_text": "See on Github", + "date": "Since October 2025" } }, "tags":{ diff --git a/src/assets/localization/fr/localization.json b/src/assets/localization/fr/localization.json index 6d1e819..e2a6c72 100644 --- a/src/assets/localization/fr/localization.json +++ b/src/assets/localization/fr/localization.json @@ -34,7 +34,7 @@ "disblock":{ "title": "Disblock", "desc": "Disblock est un projet à la base d'un bot sur Discord. Beaucoup d'utilisateurs veulent personnaliser leur serveur, mais n'ont pas les compétences de codage. Disblock est un moyen de rapidement assembler son propre agent automatisé, en emboîtant des blocs qui décrivent que faire, et quand.", - "button_text": "Site web du projet", + "button_text": "Archive du projet", "button2_text": "Voir sur GitHub", "date": "De 2021 à 2025" }, @@ -71,9 +71,15 @@ }, "ia_assistant":{ "title": "Assistant personnel", - "desc": "Le but de ce projet est d'avoir un moyen d'utiliser un agent IA ayant accès à de nombreux outils comme un assistant personnel. Construit en utilisant Ollama, LangGraph, ect...", + "desc": "Le but de ce projet est d'avoir un moyen d'utiliser un agent IA ayant accès à de nombreux outils comme un assistant personnel. Construit en utilisant Ollama, LangGraph, ect... En pause pour le moment.", "button_text": "Voir sur Github", "date": "Depuis juin 2025" + }, + "potato_research":{ + "title": "Projet de recherche lié aux pommes de terres", + "desc": "Les détails ne sont pas encore publics, mais un logiciel lié aux pommes de terres est en cours de dévelopement !", + "button_text": "Voir sur Github", + "date": "Depuis Octobre 2025" } }, "tags":{ diff --git a/src/components/home/projects.vue b/src/components/home/projects.vue index 157a747..1474a8c 100644 --- a/src/components/home/projects.vue +++ b/src/components/home/projects.vue @@ -42,6 +42,7 @@ import tradingAiImg from '@/assets/img/trading_ai.png'; import thisWebsiteImg from '@/assets/img/this_website.png'; import assistantImg from '@/assets/img/assistant_new_talk.png'; + import potatoImg from '@/assets/img/potato.png'; import {useI18n} from 'vue-i18n'; const i18n = useI18n(); @@ -60,9 +61,9 @@ title: i18n.t("home.projects.project.disblock.title"), desc:i18n.t("home.projects.project.disblock.desc"), buttonText:i18n.t("home.projects.project.disblock.button_text"), - buttonLink:"https://disblock.xyz", + buttonLink:"https://web.archive.org/web/20250403090231/https://disblock.xyz/", localButton:false, - button2Text:i18n.t("home.projects.project.disblock.button2_text"), + button2Text:i18n.t("home.projects.project.disblock.button2_text"), // button2Text => buttonText to change the color. button2Link:"https://github.com/Disblock/WebApp", tags:[ {title:i18n.t("home.projects.tags.home"), colour:tagsColours.home}, @@ -109,6 +110,19 @@ {title:i18n.t("home.projects.tags.school"), colour:tagsColours.school} ], date: i18n.t("home.projects.project.trading_ai.date") + },{ + picture: potatoImg, + title: i18n.t("home.projects.project.potato_research.title"), + desc:i18n.t("home.projects.project.potato_research.desc"), + //buttonText:i18n.t("home.projects.project.potato_research.button_text"), + //buttonLink:"https://github.com/LJ5O/", // Todo + localButton:false, + tags:[ + {title:i18n.t("home.projects.tags.active"), colour:tagsColours.active}, + {title:i18n.t("home.projects.tags.research"), colour:tagsColours.research}, + {title:i18n.t("home.projects.tags.school"), colour:tagsColours.school} + ], + date: i18n.t("home.projects.project.potato_research.date") },{ picture: assistantImg, title: i18n.t("home.projects.project.ia_assistant.title"), @@ -117,7 +131,7 @@ buttonLink:"https://github.com/LJ5O/Assistant", localButton:false, tags:[ - {title:i18n.t("home.projects.tags.active"), colour:tagsColours.active}, + //{title:i18n.t("home.projects.tags.active"), colour:tagsColours.active}, {title:i18n.t("home.projects.tags.home"), colour:tagsColours.home} ], date: i18n.t("home.projects.project.ia_assistant.date")