Skip to content

Commit

Permalink
feat: update education
Browse files Browse the repository at this point in the history
  • Loading branch information
DerYeger committed Feb 7, 2025
1 parent 71808a8 commit 8c7a221
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
4 changes: 4 additions & 0 deletions src/components/cv/education/Education.astro
Original file line number Diff line number Diff line change
Expand Up @@ -8,18 +8,22 @@ const education: Education[] = [
name: 'Software Engineering and Internet Computing (M.Sc.)',
institution: 'TU Wien',
startDate: '2021-10',
endDate: '2025-02',
grade: '1.1 with distinction',
},
{
name: 'Computer Science (B.Sc.)',
institution: 'University of Kassel',
startDate: '2016-10',
endDate: '2021-03',
grade: '1.0 with distinction',
},
{
name: 'University-entrance diploma (Abitur)',
institution: 'Wilhelmsgymnasium Kassel',
startDate: '2009-09',
endDate: '2016-07',
grade: '1.7',
},
].sort((a, b) => b.startDate.localeCompare(a.startDate))
---
Expand Down
2 changes: 1 addition & 1 deletion src/components/cv/education/EducationEntry.astro
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const { education } = Astro.props as Props
<div class="lh-6 flex flex-col">
<span class="text-black">{education.name}</span>
<span>
{education.institution}
{education.institution}, {education.grade}
</span>
<div class="text-lighter">
<DateRange startDate={education.startDate} endDate={education.endDate} />
Expand Down
1 change: 1 addition & 0 deletions src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ export interface Education {
institution: string
startDate: string
endDate?: string
grade: string
}

export interface Experience {
Expand Down

0 comments on commit 8c7a221

Please sign in to comment.