···11+import { Localised } from "./projects.ts";
22+33+interface Education {
44+ title: Localised;
55+ description: Localised;
66+ date: string;
77+ notes?: Localised[];
88+}
99+1010+export const education: Education[] = [
1111+ {
1212+ title: {
1313+ "en": "Master's in Computer Science",
1414+ "fr": "Master en Informatique",
1515+ },
1616+ description: {
1717+ "en": "ISTIC — Université de Rennes",
1818+ "fr": "ISTIC — Université de Rennes",
1919+ },
2020+ date: "2025 - 2027",
2121+ notes: [
2222+ {
2323+ "en": "VP of Digital Tools @ FARE",
2424+ "fr": "VP Outils Numériques @ FARE",
2525+ },
2626+ ],
2727+ },
2828+ {
2929+ title: {
3030+ "en": "Bachelor's in Computer Science",
3131+ "fr": "Licence en Informatique",
3232+ },
3333+ description: {
3434+ "en": "ISTIC — Université de Rennes",
3535+ "fr": "ISTIC — Université de Rennes",
3636+ },
3737+ date: "2024 - 2025",
3838+ },
3939+ {
4040+ title: {
4141+ "en": "Erasmus semester in Joensuu, Finland",
4242+ "fr": "Semestre Erasmus à Joensuu, Finlande",
4343+ },
4444+ description: {
4545+ "en": "University of Eastern Finland",
4646+ "fr": "University of Eastern Finland",
4747+ },
4848+ date: "2023",
4949+ notes: [
5050+ {
5151+ "en": "Active member of the International Student Association (ESN)",
5252+ "fr":
5353+ "Membre actif de l'Association des Étudiants Internationaux (ESN)",
5454+ },
5555+ ],
5656+ },
5757+ {
5858+ title: {
5959+ "en": "DUT in Computer Science",
6060+ "fr": "DUT Informatique",
6161+ },
6262+ description: {
6363+ "en": "IUT de Vannes, Brittany",
6464+ "fr": "IUT de Vannes",
6565+ },
6666+ date: "2021 - 2023",
6767+ notes: [
6868+ {
6969+ "en": "Member of the Student Council",
7070+ "fr": "Membre du Bureau des Étudiants",
7171+ },
7272+ ],
7373+ },
7474+];
+5
src/pages/en/index.astro
···2323 additionalProjectsDescription:
2424 "I'll keep adding the best of my projects as I get building",
2525 },
2626+ educationSection: {
2727+ title: "Education",
2828+ description:
2929+ "I'm currently studying computer science at the University of Rennes.",
3030+ },
2631};
2732---
2833
+5
src/pages/fr/index.astro
···2424 additionalProjectsDescription:
2525 "Je continuerai à ajouter mes meilleurs projets.",
2626 },
2727+ educationSection: {
2828+ title: "Éducation",
2929+ description:
3030+ "Je suis actuellement étudiant en informatique à l'Université de Rennes.",
3131+ },
2732};
2833---
2934