💬 edit cv-text

Signed-off-by: Sindre Kjelsrud <kjelsrudsindre@gmail.com>
This commit is contained in:
Sindre Kjelsrud 2024-04-26 14:58:16 +02:00
parent 0d92a8b010
commit 1cd5bf49a2
Signed by untrusted user who does not match committer: sidski
GPG key ID: D2BBDF3EDE6BA9A6
2 changed files with 23 additions and 10 deletions

View file

@ -22,7 +22,7 @@ import resume from '../data/resume.json';
<div class="flex gap-2 flex-wrap items-center justify-between">
<div class="flex gap-2 flex-wrap items-center">
<h3>{work.position}</h3>
<p><a href={work.url}>{work.name}</a></p>
<p class="font-bold"><a href={work.url}>{work.name}</a></p>
</div>
<p class="cv-date">{work.startDate} - {work.endDate}</p>
</div>
@ -45,7 +45,7 @@ import resume from '../data/resume.json';
<div class="flex md:gap-2 flex-wrap items-center justify-between">
<div class="flex md:gap-2 flex-wrap items-center">
<h3>{education.area}</h3>
<p><a href={education.url}>{education.institution}</a></p>
<p class="font-bold"><a href={education.url}>{education.institution}</a></p>
</div>
<p class="cv-date">{education.startDate} - {education.endDate}</p>
{education.description ?
@ -65,7 +65,7 @@ import resume from '../data/resume.json';
<div class="flex gap-2 flex-wrap items-center justify-between">
<div class="flex gap-2 flex-wrap items-center">
<h3>{volunteer.position}</h3>
<p><a href={volunteer.url}>{volunteer.organization}</a></p>
<p class="font-bold"><a href={volunteer.url}>{volunteer.organization}</a></p>
</div>
<p class="cv-date">{volunteer.startDate} - {volunteer.endDate}</p>
</div>