diff --git a/src/pages/index.astro b/src/pages/index.astro
index d18e900..56ad64a 100644
--- a/src/pages/index.astro
+++ b/src/pages/index.astro
@@ -5,13 +5,16 @@ import Section from "../components/Section.astro";
import About from "../components/About.astro";
import SkillGroup from "../components/SkillGroup.astro";
import ProjectCard from "../components/ProjectCard.astro";
+import PostList from "../components/PostList.astro";
import Contact from "../components/Contact.astro";
import { skills } from "../data/skills";
+import { getPosts } from "../lib/blog";
import { getCollection } from "astro:content";
const featuredProjects = (await getCollection("projects", (p) => p.data.featured)).sort(
(a, b) => a.data.order - b.data.order,
);
+const recentPosts = (await getPosts()).slice(0, 3);
---
+ Lessons from edge Kubernetes, GPUs, and running infrastructure like it matters — + written up as I go. +
++ Read the blog → +
+