From b11cf203d3b692ae30f83fcadc722d999bc3a3d0 Mon Sep 17 00:00:00 2001 From: KazooTTT Date: Mon, 10 Feb 2025 16:24:59 +0800 Subject: [PATCH] feat: add friend links --- src/pages/friends.astro | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/pages/friends.astro b/src/pages/friends.astro index 4c0aa92..91bbe03 100644 --- a/src/pages/friends.astro +++ b/src/pages/friends.astro @@ -38,6 +38,10 @@ const friends: { name: string; url: string; description?: string }[] = [ name: `Roi's Blog`, url: "https://roi.moe/", }, + { + name: "Seyee's Blog", + url: "https://seyee.co/", + }, ]; ---