diff --git a/src/_data/nav.json b/src/_data/nav.json
deleted file mode 100644
index 21d282b..0000000
--- a/src/_data/nav.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "items": [
- {
- "url": "/",
- "name": "Home"
- },
- {
- "url": "/about/",
- "name": "About"
- },
- {
- "url": "/blog/",
- "name": "Blog"
- }
- ]
-}
\ No newline at end of file
diff --git a/src/_data/projects.json b/src/_data/projects.json
new file mode 100644
index 0000000..ec7eec8
--- /dev/null
+++ b/src/_data/projects.json
@@ -0,0 +1,28 @@
+{
+ "projects": [
+ {
+ "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.",
+ "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",
+ "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.",
+ "photo": "/static/aoc.png",
+ "link": "https://github.com/KoenDR06/nix-config"
+ },
+ {
+ "name": "nix-config",
+ "text": "The configurations for my NixOS machines. It includes configuration for all my apps, window managers, network, timezones, and more. It's also modularized so that adding a new machine with unique property is a breeze.",
+ "photo": "/static/nixos.svg",
+ "link": "https://github.com/KoenDR06/nix-config"
+ }
+ ]
+}
\ No newline at end of file
diff --git a/src/_data/site.json b/src/_data/site.json
deleted file mode 100644
index 7bb380c..0000000
--- a/src/_data/site.json
+++ /dev/null
@@ -1,4 +0,0 @@
-{
- "name": "Koen de Ruiter",
- "description": "An Eleventy demo site."
-}
\ No newline at end of file
diff --git a/src/_includes/base.liquid b/src/_includes/base.liquid
index e1e57dd..ab626b3 100644
--- a/src/_includes/base.liquid
+++ b/src/_includes/base.liquid
@@ -9,21 +9,26 @@
-
+
+
This is a university project I made with a group of three for a web technologies course.
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/src/pages/home.liquid b/src/pages/home.liquid
new file mode 100644
index 0000000..b29477f
--- /dev/null
+++ b/src/pages/home.liquid
@@ -0,0 +1,17 @@
+---
+permalink: /
+title: Koen de Ruiter
+---
+
+{% for p in projects.projects %}
+