diff --git a/web/src/components/index/recentPosts.astro b/web/src/components/index/recentPosts.astro
new file mode 100644
index 0000000..b0f1038
--- /dev/null
+++ b/web/src/components/index/recentPosts.astro
@@ -0,0 +1,39 @@
+---
+import SummaryCard from "./summaryCard.astro";
+import { authPB } from "@utils/pocketbase";
+import { getFormattedDate } from "@utils/date";
+
+const pb = await authPB()
+
+const posts = await pb.collection('posts').getList(1, 3, {
+ sort: '-publishDate',
+ filter: 'published=true',
+})
+
+const postImages = await Promise.all( posts.items.map(p => pb.files.getURL(p, p.headerImage)) )
+
+---
+
+
+
+
New website new me!
Check out some of the photos and posts I've added recently, as well as the new design.
If you're interested, I actually wrote a post about the new design and all that went into it.