diff --git a/web/src/pages/now.astro b/web/src/pages/now.astro
new file mode 100644
index 0000000..b02bb99
--- /dev/null
+++ b/web/src/pages/now.astro
@@ -0,0 +1,33 @@
+---
+import Base from "@layout/Base";
+import { authPB } from "@utils/pocketbase";
+export const prerender = false
+
+const pb = await authPB()
+
+const records = await pb.collection('now').getFullList({
+ sort: '-created'
+})
+---
+
+
Trying out a Now Page, inspired by some other personal sites such as this great one.
I'll update this every now and then; the gist is "this is what you would tell someone that you haven't seem in a year, what you've been up to". Love that concept!
+