diff --git a/web/src/components/index/recentAlbums.astro b/web/src/components/index/recentAlbums.astro
new file mode 100644
index 0000000..f94609f
--- /dev/null
+++ b/web/src/components/index/recentAlbums.astro
@@ -0,0 +1,36 @@
+---
+import SummaryCard from "./summaryCard.astro";
+import { authPB } from "@utils/pocketbase";
+import { getFormattedDate } from "@utils/date";
+
+const pb = await authPB()
+
+const albums = await pb.collection('albums').getList(1, 3, {
+ sort: '-created',
+})
+
+const postImages = await Promise.all( albums.items.map(a => pb.files.getURL(a, a.images[0])) )
+
+---
+
+
+
+
This is the third major iteration of the website, and by far the most flexible and best designed (imo!)
I'm... really not sure what to put on this landing page, make sure to check out some of the photos and posts I've added recently, I've been totally revamping those too and I'm really proud of this batch.
I'm... really not sure what else to put on this landing page, make sure to check out some of the photos and posts I've added recently, I've been totally revamping those too and I'm really proud of this batch.
Hope you enjoy your time here :)
- +