feat: update all post filenames

This commit is contained in:
Devin Haska 2024-02-26 16:28:23 -08:00
parent 169858c05a
commit 48b8a5e10e
53 changed files with 22 additions and 96 deletions

View file

@ -32,7 +32,7 @@ const blogroll = [
url: "https://www.arcana.computer/",
},
{
title: "Jonas Downey,",
title: "Jonas Downey",
url: "https://jonas.do/",
},
{
@ -75,6 +75,12 @@ const blogroll = [
title: "Winnie Lim",
url: "https://winnielim.org/",
},
{
title: "Cory Dransfeldt",
url: "https://coryd.dev/",
},
];
module.exports = blogroll;
const sortedBlogroll = blogroll.sort((a, b) => a.title.localeCompare(b.title));
module.exports = sortedBlogroll;