diff --git a/src/assets/img/trading_ai.png b/src/assets/img/trading_ai.png new file mode 100644 index 0000000..64c15a4 Binary files /dev/null and b/src/assets/img/trading_ai.png differ diff --git a/src/assets/localization/en/localization.json b/src/assets/localization/en/localization.json index 7984670..645be6c 100644 --- a/src/assets/localization/en/localization.json +++ b/src/assets/localization/en/localization.json @@ -51,6 +51,12 @@ "desc": "I went for a second internship to Japan, at Fukushima National Institute of Technology. I assisted the Research team with the study on the perception of temporal seriality with the naked eye. My role was to create software able to perform various essentials transformations on videos.", "button_text": "More about it", "date": "From April 2024 to July 2024" + }, + "trading_ai":{ + "title": "Prices prediction AI", + "desc": "As part of my Master's degree studies, I am working on a research project, about stock market price prediction. This project is still ongoing, with encouraging results obtained for now.", + "button_text": "More about it", + "date": "From November 2024 to May 2025" } }, "tags":{ diff --git a/src/components/home/projects.vue b/src/components/home/projects.vue index 96834c7..2961d65 100644 --- a/src/components/home/projects.vue +++ b/src/components/home/projects.vue @@ -37,6 +37,7 @@ import portfolioImg from "@/assets/img/portfolio.png"; import semanticSegmentationImg from '@/assets/img/semantic_segmentation.png'; import videoEditorSegmentationImg from '@/assets/img/video_editor.png'; + import tradingAiImg from '@/assets/img/trading_ai.png'; import {useI18n} from 'vue-i18n'; const i18n = useI18n(); @@ -77,6 +78,18 @@ {title:i18n.t("home.projects.tags.bugs_only"), colour:tagsColours.bugs_only} ], date: i18n.t("home.projects.project.portfolio.date") + },{ + picture: tradingAiImg, + title: i18n.t("home.projects.project.trading_ai.title"), + desc:i18n.t("home.projects.project.trading_ai.desc"), + buttonText:i18n.t("home.projects.project.trading_ai.button_text"), + //buttonLink:"#", + 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.trading_ai.date") },{ picture: semanticSegmentationImg, title: i18n.t("home.projects.project.semantic_segmentation.title"),