diff --git a/src/components/Education.tsx b/src/components/Education.tsx
index 84d565b..d72584f 100644
--- a/src/components/Education.tsx
+++ b/src/components/Education.tsx
@@ -24,6 +24,23 @@ const Education = () => {
],
color: "#4CAF50",
icon:
+ },
+ {
+ id: 2,
+ degree: t('education.highschool.degree'),
+ school: t('education.highschool.school'),
+ location: t('education.highschool.location'),
+ period: t('education.highschool.period'),
+ currentYear: "",
+ status: t('education.highschool.status'),
+ description: t('education.highschool.description'),
+ highlights: [
+ t('education.highschool.highlights.0'),
+ t('education.highschool.highlights.1'),
+ t('education.highschool.highlights.2')
+ ],
+ color: "#3F51B5",
+ icon:
}
];
@@ -106,7 +123,7 @@ const Education = () => {
}}
>
-
@@ -135,7 +152,7 @@ const Education = () => {
-
@@ -206,7 +223,7 @@ const Education = () => {
{cert.skills.map((skill, skillIndex) => (
- {
className="goal-progress-bar"
initial={{ width: 0 }}
whileInView={{ width: `${item.progress}%` }}
- transition={{
- duration: 1.5,
+ transition={{
+ duration: 1.5,
delay: index * 0.1 + 0.5,
ease: [0.25, 0.1, 0.25, 1] as const
}}
diff --git a/src/contexts/LanguageContext.tsx b/src/contexts/LanguageContext.tsx
index fc04418..592bf62 100644
--- a/src/contexts/LanguageContext.tsx
+++ b/src/contexts/LanguageContext.tsx
@@ -129,6 +129,15 @@ const translations = {
'education.cert2.title': 'React & TypeScript',
'education.cert2.provider': 'Projets personnels',
'education.cert2.date': '2024',
+ 'education.highschool.degree': 'CESS (Certificat d\'Enseignement Secondaire Supérieur)',
+ 'education.highschool.school': 'Athénée Royal d\'Ath',
+ 'education.highschool.location': 'Ath, Belgique',
+ 'education.highschool.period': '2016 - 2022',
+ 'education.highschool.status': 'Diplômé',
+ 'education.highschool.description': 'Section Math-Sciences (Math 8h - Sciences 7h)',
+ 'education.highschool.highlights.0': 'Mathématiques avancées',
+ 'education.highschool.highlights.1': 'Sciences (Physique, Chimie, Biologie)',
+ 'education.highschool.highlights.2': 'Langues',
// Contact
'contact.title': 'Contactez-moi',
@@ -257,6 +266,15 @@ const translations = {
'education.cert2.title': 'React & TypeScript',
'education.cert2.provider': 'Personal projects',
'education.cert2.date': '2024',
+ 'education.highschool.degree': 'CESS (Certificate of Upper Secondary Education)',
+ 'education.highschool.school': 'Athénée Royal d\'Ath',
+ 'education.highschool.location': 'Ath, Belgium',
+ 'education.highschool.period': '2016 - 2022',
+ 'education.highschool.status': 'Graduated',
+ 'education.highschool.description': 'Math-Science Section (Math 8h - Science 7h)',
+ 'education.highschool.highlights.0': 'Advanced Mathematics',
+ 'education.highschool.highlights.1': 'Sciences (Physics, Chemistry, Biology)',
+ 'education.highschool.highlights.2': 'Languages',
// Contact
'contact.title': 'Contact me',