feat: include overall uni grade on about
All checks were successful
Docker / build-and-push-image (push) Successful in 59s
All checks were successful
Docker / build-and-push-image (push) Successful in 59s
This commit is contained in:
parent
c1826e1d6b
commit
5c32eca77a
5 changed files with 22 additions and 16 deletions
|
@ -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>
|
||||
))
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue