diff --git a/src/_data/projects.json b/src/_data/projects.json index 781f19d..5b166a4 100644 --- a/src/_data/projects.json +++ b/src/_data/projects.json @@ -1,5 +1,11 @@ { "projects": [ + { + "name": "Raytracer", + "text": "A raytracer written completely in C++ I made for a university assignment. It's not the most advanced, but I am proud of it (and the fact the entire thing was made in like 1.5 weeks)", + "photo": "/static/raytracer.webp", + "link": "https://github.com/KoenDR06/Raytracer" + }, { "name": "Comedy TUI", "text": "This is an app I built for my work in comedy shows. It's a really simple terminal UI that has a stopwatch, room for notes, and manages the music currently playing. It enables me to focus on the important parts of the job, which is great.", diff --git a/src/_includes/base.liquid b/src/_includes/base.liquid index bdc7db5..ef43125 100644 --- a/src/_includes/base.liquid +++ b/src/_includes/base.liquid @@ -17,7 +17,7 @@ Ayrton Diablo S
- Beam of Ayrton Diablo S + Beam of Ayrton Diablo S
diff --git a/src/static/beam.png b/src/static/beam.png deleted file mode 100644 index 6c76ca3..0000000 Binary files a/src/static/beam.png and /dev/null differ diff --git a/src/static/beam.webp b/src/static/beam.webp new file mode 100644 index 0000000..2ddd784 Binary files /dev/null and b/src/static/beam.webp differ diff --git a/src/static/raytracer.webp b/src/static/raytracer.webp new file mode 100644 index 0000000..aef5ad3 Binary files /dev/null and b/src/static/raytracer.webp differ