diff --git a/src/assets/localization/en/localization.json b/src/assets/localization/en/localization.json index 7051906..9a7f96d 100644 --- a/src/assets/localization/en/localization.json +++ b/src/assets/localization/en/localization.json @@ -100,6 +100,11 @@ } } }, + "education": { + "title": "Education and certifications", + "subtitle": "The steps for my learning journey", + "introduction": "Before reaching my current level, I had a long time learning various concepts in some nice institutions who accepted me as a student. I'm really grateful towards all of them, as I wouldn't be like I am without their help." + }, "contact": { "title": "Send me a message !", "subtitle": "Thanks for your interest ! If you want to contact me, the easiest way is by Email.", diff --git a/src/assets/main.css b/src/assets/main.css index 7b65bac..fd52443 100644 --- a/src/assets/main.css +++ b/src/assets/main.css @@ -29,6 +29,10 @@ a:visited{ text-align: center; } +.subtitle{ + font-size: 1.3em; +} + #app{ height: 100%; margin: 0; diff --git a/src/components/education/schoolDisplay.vue b/src/components/education/schoolDisplay.vue new file mode 100644 index 0000000..5a63d19 --- /dev/null +++ b/src/components/education/schoolDisplay.vue @@ -0,0 +1,84 @@ + + + + + \ No newline at end of file diff --git a/src/router/index.js b/src/router/index.js index 76a016d..51e8efa 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -2,6 +2,7 @@ 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({ @@ -22,6 +23,11 @@ const router = createRouter({ name: 'skills', component: SkillsView }, + { + path: '/education', + name: 'education', + component: EducationView + }, { path: '/contact', name: 'contact', diff --git a/src/views/EducationView.vue b/src/views/EducationView.vue new file mode 100644 index 0000000..9fc9d64 --- /dev/null +++ b/src/views/EducationView.vue @@ -0,0 +1,72 @@ + + + + + + \ No newline at end of file