From 75902fd51087e89082f10b327b697e7f1b6ab04e Mon Sep 17 00:00:00 2001 From: Devin Haska <2636402+wonderfulfrog@users.noreply.github.com> Date: Sun, 29 Sep 2024 21:50:29 -0700 Subject: [PATCH] feat: update blogroll data (#7) --- src/_data/blogroll.js | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/src/_data/blogroll.js b/src/_data/blogroll.js index 6539f98..9e0270f 100644 --- a/src/_data/blogroll.js +++ b/src/_data/blogroll.js @@ -28,8 +28,8 @@ const blogroll = [ url: "https://alicebartlett.co.uk/", }, { - title: "Arcana Computer", - url: "https://www.arcana.computer/", + title: "Justin Duke", + url: "https://jmduke.com/", }, { title: "Jonas Downey", @@ -51,10 +51,6 @@ const blogroll = [ title: "Ryan Mulligan", url: "https://ryanmulligan.dev/", }, - { - title: "cliophate", - url: "https://cliophate.wtf/", - }, { title: "Ryan P. Randall", url: "https://www.ryanpatrickrandall.com/", @@ -87,10 +83,6 @@ const blogroll = [ title: "Anh", url: "https://anhvn.com", }, - { - title: "Cassidy Williams", - url: "https://blog.cassidoo.co", - }, ]; const sortedBlogroll = blogroll.sort((a, b) => a.title.localeCompare(b.title));