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

@ -3,7 +3,7 @@ title: "MUST FIND BEANS"
description: "What would you do if you realised your breakfast was going to be entirely free of beans, and how far would you go to make it right?"
date: 2025-05-08
image: { url: "main-capsule.png", alt: "MUST FIND BEANS Title Logo" }
tags: ["godot", "blender", "gimp"]
tags: ["godot", "blender", "gimp", "aseprite"]
categories: ["personal"]
---
@ -41,7 +41,7 @@ The game is not yet available but can be wishlisted on [Steam](https://store.ste
![Brute enemy type model](brute.png)
> Brute enemy model from current development not yet in the playtest.
> Brute enemy model from current development not yet in the playtest build.
## Screenshots

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>
))
}

View file

@ -32,7 +32,7 @@
:root {
color-scheme: light dark;
--primary: light-dark(var(--color-neutral-50), var(--color-black));
--primary: light-dark(var(--color-neutral-50), var(--color-neutral-950));
--secondary: light-dark(var(--color-neutral-950), var(--color-neutral-50));
--tertiary: light-dark(var(--color-neutral-500), var(--color-neutral-500));