diff --git a/README.md b/README.md
new file mode 100644
index 0000000..f8504bf
--- /dev/null
+++ b/README.md
@@ -0,0 +1,10 @@
+## Prerequisites
+
+- pnpm@9
+- node@20
+- [mise](https://mise.jdx.dev/) (optional) to install dependencies
+
+## Usage
+
+- Local development: `pnpm dev`
+- Deploy: `pnpm upload`
diff --git a/site/_includes/home.njk b/site/_includes/home.njk
new file mode 100644
index 0000000..66d1fa0
--- /dev/null
+++ b/site/_includes/home.njk
@@ -0,0 +1,19 @@
+---
+layout: "base.njk"
+---
+{{ content | safe }}
+{%- for name, collection in collections -%}
+ {%- if name not in ["all", "timeline", "pages"] -%}
+
{{name | capitalize }}
+
+ {%- for item in collection | reverse -%}
+ -
+ {{item.data.title}}
+ {%- if item.data.dateString -%}
+
+ {%- endif -%}
+
+ {%- endfor -%}
+
+ {%- endif -%}
+{%- endfor -%}
diff --git a/site/index.njk b/site/index.njk
deleted file mode 100644
index 6db9fac..0000000
--- a/site/index.njk
+++ /dev/null
@@ -1,25 +0,0 @@
----
-layout: base
-title: Home
----
-
-I'm Joshua Seigler, a homeschooled kid born in the 80s. I've watched technology advance from dial-up and Geocities pages, to federated social media and decentralized autonomous organizations.
-After a period exploring cryptocurrencies and building web development skills, I dove into political philosophy, focusing on economics, conspiracy, and truth-seeking generally.
-In an effort to make sense of the tremendous social shifts that occurred in 2019/2020, I started learning about symbolism and mysticism, trying to escape an obsolete materialistic mindset. In 2021 I returned to faith in Jesus and joined an Eastern Orthodox church.
-If you would like to reach me, you can send me electronic mail. Or for a closer look at my professional history, try my timeline.
-
-{%- for name, collection in collections -%}
- {%- if name not in ["all", "timeline", "pages"] -%}
-
{{name | capitalize }}
-
- {%- for item in collection | reverse -%}
- -
- {{item.data.title}}
- {%- if item.data.dateString -%}
-
- {%- endif -%}
-
- {%- endfor -%}
-
- {%- endif -%}
-{%- endfor -%}
diff --git a/site/pages/home.md b/site/pages/home.md
new file mode 100644
index 0000000..a7ff763
--- /dev/null
+++ b/site/pages/home.md
@@ -0,0 +1,13 @@
+---
+layout: home.njk
+title: Home
+permalink: /
+---
+
+I'm Joshua Seigler, a homeschooled kid born in the 80s. I've watched technology advance from dial-up and Geocities pages, to federated social media and decentralized autonomous organizations.
+
+After a period exploring cryptocurrencies and building web development skills, I dove into political philosophy, focusing on economics, conspiracy, and truth-seeking generally.
+
+In an effort to make sense of the tremendous social shifts that occurred in 2019/2020, I started learning about symbolism and mysticism, trying to escape an obsolete materialistic mindset. In 2021 I returned to faith in Jesus and joined an Eastern Orthodox church.
+
+If you would like to reach me, you can [send me electronic mail](mailto:joshua@seigler.net?subject=found+your+website). Or for a closer look at my professional history, try my [timeline](/timeline).