mirror of
https://github.com/LJ5O/website.git
synced 2026-08-11 22:54:46 +02:00
Added pictures for schools
This commit is contained in:
BIN
src/assets/img/schools/high.png
Normal file
BIN
src/assets/img/schools/high.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 2.1 MiB |
BIN
src/assets/img/schools/iut.png
Normal file
BIN
src/assets/img/schools/iut.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 14 MiB |
BIN
src/assets/img/schools/middle.png
Normal file
BIN
src/assets/img/schools/middle.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 1.6 MiB |
BIN
src/assets/img/schools/ulco.png
Normal file
BIN
src/assets/img/schools/ulco.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 887 KiB |
@@ -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."
|
"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": {
|
"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."
|
"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."
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -2,7 +2,6 @@ import { createRouter, createWebHistory } from 'vue-router'
|
|||||||
import HomeView from '../views/HomeView.vue'
|
import HomeView from '../views/HomeView.vue'
|
||||||
import BaseArticle from '@/views/BaseArticle.vue'
|
import BaseArticle from '@/views/BaseArticle.vue'
|
||||||
import SkillsView from '@/views/SkillsView.vue'
|
import SkillsView from '@/views/SkillsView.vue'
|
||||||
import EducationView from '@/views/EducationView.vue'
|
|
||||||
import ContactView from '@/views/ContactView.vue'
|
import ContactView from '@/views/ContactView.vue'
|
||||||
|
|
||||||
const router = createRouter({
|
const router = createRouter({
|
||||||
@@ -26,7 +25,7 @@ const router = createRouter({
|
|||||||
{
|
{
|
||||||
path: '/education',
|
path: '/education',
|
||||||
name: 'education',
|
name: 'education',
|
||||||
component: EducationView
|
component: () => import('../views/EducationView.vue')
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
path: '/contact',
|
path: '/contact',
|
||||||
|
|||||||
@@ -30,27 +30,32 @@
|
|||||||
import diploma from '@/components/education/diploma.vue';
|
import diploma from '@/components/education/diploma.vue';
|
||||||
import SkillsList from '@/components/skills/skillsList.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 i18n = useI18n();
|
||||||
|
|
||||||
const schools = [{
|
const schools = [{
|
||||||
name: i18n.t("education.schools.middle.name"),
|
name: i18n.t("education.schools.middle.name"),
|
||||||
desc: i18n.t("education.schools.middle.desc"),
|
desc: i18n.t("education.schools.middle.desc"),
|
||||||
img: "https://picsum.photos/600/400",
|
img: middleImg,
|
||||||
link: "https://lasallecoudekerque.com/"
|
link: "https://lasallecoudekerque.com/"
|
||||||
},{
|
},{
|
||||||
name: i18n.t("education.schools.high.name"),
|
name: i18n.t("education.schools.high.name"),
|
||||||
desc: i18n.t("education.schools.high.desc"),
|
desc: i18n.t("education.schools.high.desc"),
|
||||||
img: "https://picsum.photos/600/400",
|
img: highImg,
|
||||||
link: "https://www.epid-vauban.fr/"
|
link: "https://www.epid-vauban.fr/"
|
||||||
},{
|
},{
|
||||||
name: i18n.t("education.schools.bachelor.name"),
|
name: i18n.t("education.schools.bachelor.name"),
|
||||||
desc: i18n.t("education.schools.bachelor.desc"),
|
desc: i18n.t("education.schools.bachelor.desc"),
|
||||||
img: "https://picsum.photos/600/400",
|
img: iutImg,
|
||||||
link: "https://www.iut-littoral.fr/"
|
link: "https://www.iut-littoral.fr/"
|
||||||
},{
|
},{
|
||||||
name: i18n.t("education.schools.master.name"),
|
name: i18n.t("education.schools.master.name"),
|
||||||
desc: i18n.t("education.schools.master.desc"),
|
desc: i18n.t("education.schools.master.desc"),
|
||||||
img: "https://picsum.photos/600/400",
|
img: ulcoImg,
|
||||||
link: "https://www.univ-littoral.fr/"
|
link: "https://www.univ-littoral.fr/"
|
||||||
}];
|
}];
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user