diff --git a/src/_data/projects.json b/src/_data/projects.json index 21fa798..781f19d 100644 --- a/src/_data/projects.json +++ b/src/_data/projects.json @@ -1,22 +1,28 @@ { "projects": [ + { + "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.", + "photo": "/static/mic.svg", + "link": "https://github.com/KoenDR06/ComedyTUI" + }, { "name": "Mandelbrot", - "text": "A Mandelbrot renderer I made for a university course written in C#. It has multithreading, multiple color modes, and the ability to export and import renders as .mandel files, which is a file format specially created for this project.", + "text": "A Mandelbrot renderer I made for a university course written in C#. It is multithreaded, has multiple color modes, and the ability to export and import renders as .mandel files, which is a file format specially created for this project.", "photo": "/static/mandelbrot.jpg", "link": "https://github.com/KoenDR06/UniMandelbrot" }, { "name": "AulaControl", - "text": "This project aimed to control the aula at my old high school using a USB to DMX converter written in Kotlin. It played music and controlled the lights during lunchtime.", - "photo": "/static/dmx.png", + "text": "This project aimed to control the auditorium at my old high school using a USB to DMX converter written in Kotlin. It played music and controlled the lights during lunchtime.", + "photo": "/static/music.svg", "link": "https://github.com/AVTOLZ/AulaControl" }, { "name": "Advent Of Code", - "text": "All of my current advent of code solutions, written in Kotlin. Some of the worst code I've written, yet I learn a lot from it.", + "text": "All of my current Advent of Code solutions, written in Kotlin. Some of the worst code I've written, yet I've learnt a ton from it.", "photo": "/static/aoc.png", - "link": "https://github.com/KoenDR06/nix-config" + "link": "https://github.com/KoenDR06/AdventOfCode" }, { "name": "NixOS Config", @@ -25,4 +31,4 @@ "link": "https://github.com/KoenDR06/nix-config" } ] -} \ No newline at end of file +} diff --git a/src/pages/gallery.liquid b/src/pages/gallery.liquid index d429f71..8b983c8 100644 --- a/src/pages/gallery.liquid +++ b/src/pages/gallery.liquid @@ -38,10 +38,6 @@ layout: empty } } - setInterval(() => { - next() - }, 5000); - document.querySelector('#next').addEventListener('click', next); document.querySelector('#prev').addEventListener('click', prev); - \ No newline at end of file + diff --git a/src/pages/home.liquid b/src/pages/home.liquid index 058e3d9..d4f4458 100644 --- a/src/pages/home.liquid +++ b/src/pages/home.liquid @@ -9,10 +9,11 @@ title: Koen de Ruiter Project sample photo
- +
+

{{ p.name }}

- +

{{ p.text }}

-{% endfor %} \ No newline at end of file +{% endfor %} diff --git a/src/static/aoc.jpg b/src/static/aoc.jpg deleted file mode 100644 index 02e5053..0000000 Binary files a/src/static/aoc.jpg and /dev/null differ diff --git a/src/static/aoc.png b/src/static/aoc.png index 8c30bd0..0fc1c8c 100644 Binary files a/src/static/aoc.png and b/src/static/aoc.png differ diff --git a/src/static/dmx.png b/src/static/dmx.png deleted file mode 100644 index 09579ab..0000000 Binary files a/src/static/dmx.png and /dev/null differ diff --git a/src/static/gallery.svg b/src/static/gallery.svg index 7a0b201..d83c082 100644 --- a/src/static/gallery.svg +++ b/src/static/gallery.svg @@ -1,9 +1,9 @@ - + - \ No newline at end of file + diff --git a/src/static/github.svg b/src/static/github.svg index af0d33c..aa0f07b 100644 --- a/src/static/github.svg +++ b/src/static/github.svg @@ -1,4 +1,4 @@ - - \ No newline at end of file + + diff --git a/src/static/linkedin.svg b/src/static/linkedin.svg index 40ce0cc..7fe22bd 100644 --- a/src/static/linkedin.svg +++ b/src/static/linkedin.svg @@ -1,6 +1,6 @@ - + @@ -8,4 +8,4 @@ - \ No newline at end of file + diff --git a/src/static/mic.svg b/src/static/mic.svg new file mode 100644 index 0000000..2ce4002 --- /dev/null +++ b/src/static/mic.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/static/music.svg b/src/static/music.svg new file mode 100644 index 0000000..0f72300 --- /dev/null +++ b/src/static/music.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/src/static/next.svg b/src/static/next.svg index 23ee212..f83a864 100644 --- a/src/static/next.svg +++ b/src/static/next.svg @@ -37,7 +37,7 @@ id="SVGRepo_iconCarrier"> - + - + diff --git a/src/styles/photos.scss b/src/styles/photos.scss index 89a6843..70ed9f5 100644 --- a/src/styles/photos.scss +++ b/src/styles/photos.scss @@ -57,4 +57,4 @@ button { display: flex; justify-content: center; -} \ No newline at end of file +} diff --git a/src/styles/projects.scss b/src/styles/projects.scss index 2c8ce4b..c474845 100644 --- a/src/styles/projects.scss +++ b/src/styles/projects.scss @@ -29,13 +29,23 @@ a { text-decoration: none; } +.project__text img { + width: 4em; + height: auto; + + margin-right: 1em; +} + +.project__title-line { + display: flex; + align-items: center; +} + .project h2 { margin-top: 0; margin-bottom: 0; font-size: 4em; - text-decoration: underline; - color: vars.$accent-1; } @@ -53,4 +63,4 @@ a { .project__text { max-width: 50%; -} \ No newline at end of file +} diff --git a/src/styles/vars.scss b/src/styles/vars.scss index f95f4cb..d5ac5bd 100644 --- a/src/styles/vars.scss +++ b/src/styles/vars.scss @@ -1,9 +1,9 @@ -$bg-color: #1e222a; -$primary: #80a0c0; -$secondary: #4f6175; -$accent-1: #b48ead; +$bg-color: #24273a; +$primary: #b7bdf8; +$secondary: #b7bdf8; +$accent-1: #c6a0f6; $side-margin: 15vw; $load-speed: 1.2s; -$load-size: 5vh; \ No newline at end of file +$load-size: 5vh;