Added pictures for schools

This commit is contained in:
2025-04-30 16:33:11 +02:00
parent ac6d0f1578
commit 23a186a9ba
7 changed files with 11 additions and 7 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 887 KiB

View File

@@ -118,7 +118,7 @@
"desc": "As I was pretty good with computers, I headed for a Computer Science bachelor at Calais IUT. I was delighted to learn so much about this field everyday, and also got the chance to go twite to Japan for internships in research labs."
},
"master": {
"name": "ULCO, IT department",
"name": "ULCO University, Computer Science department",
"desc": "My current formation, and the logic next step. I'm discovering there the basics to Artificial Intelligence, data scientist things and optimizing algorithms and problem solving systems."
}
},

View File

@@ -2,7 +2,6 @@ import { createRouter, createWebHistory } from 'vue-router'
import HomeView from '../views/HomeView.vue'
import BaseArticle from '@/views/BaseArticle.vue'
import SkillsView from '@/views/SkillsView.vue'
import EducationView from '@/views/EducationView.vue'
import ContactView from '@/views/ContactView.vue'
const router = createRouter({
@@ -26,7 +25,7 @@ const router = createRouter({
{
path: '/education',
name: 'education',
component: EducationView
component: () => import('../views/EducationView.vue')
},
{
path: '/contact',

View File

@@ -30,27 +30,32 @@
import diploma from '@/components/education/diploma.vue';
import SkillsList from '@/components/skills/skillsList.vue';
import iutImg from '@/assets/img/schools/iut.png';
import middleImg from '@/assets/img/schools/middle.png';
import highImg from '@/assets/img/schools/high.png';
import ulcoImg from '@/assets/img/schools/ulco.png';
const i18n = useI18n();
const schools = [{
name: i18n.t("education.schools.middle.name"),
desc: i18n.t("education.schools.middle.desc"),
img: "https://picsum.photos/600/400",
img: middleImg,
link: "https://lasallecoudekerque.com/"
},{
name: i18n.t("education.schools.high.name"),
desc: i18n.t("education.schools.high.desc"),
img: "https://picsum.photos/600/400",
img: highImg,
link: "https://www.epid-vauban.fr/"
},{
name: i18n.t("education.schools.bachelor.name"),
desc: i18n.t("education.schools.bachelor.desc"),
img: "https://picsum.photos/600/400",
img: iutImg,
link: "https://www.iut-littoral.fr/"
},{
name: i18n.t("education.schools.master.name"),
desc: i18n.t("education.schools.master.desc"),
img: "https://picsum.photos/600/400",
img: ulcoImg,
link: "https://www.univ-littoral.fr/"
}];