feat: include overall uni grade on about
All checks were successful
Docker / build-and-push-image (push) Successful in 59s

This commit is contained in:
Troy 2025-06-24 17:09:28 +01:00
parent c1826e1d6b
commit 5c32eca77a
Signed by: troy
GPG key ID: DFC06C02ED3B4711
5 changed files with 22 additions and 16 deletions

View file

@ -112,6 +112,7 @@ const education = [
image: uopicon,
course: "BA (Hons) Game Arts and Design",
date: "2024 - 2025",
grade: "First Class Honours",
},
{
id: 2,
@ -277,9 +278,14 @@ const sortedEducation = [...education].sort((a, b) => a.id - b.id);
<span class="text-secondary/70">{education.name}</span>
</p>
</div>
<p class="font-mono text-sm font-light text-nowrap">
{education.date}
</p>
<div class="text-right">
<p class="font-mono text-sm font-light text-nowrap">
{education.date}
</p>
{education.grade ? (
<p class="font-mono text-xs font-light">{education.grade}</p>
) : null}
</div>
</div>
))
}