feat: add blogroll item

This commit is contained in:
Devin Haska 2024-03-04 11:39:58 -08:00
parent ef7e2cf1ca
commit 937ba9009f

View file

@ -83,6 +83,10 @@ const blogroll = [
title: "HeydonWorks", title: "HeydonWorks",
url: "https://heydonworks.com", url: "https://heydonworks.com",
}, },
{
title: "Anh",
url: "https://anhvn.com",
},
]; ];
const sortedBlogroll = blogroll.sort((a, b) => a.title.localeCompare(b.title)); const sortedBlogroll = blogroll.sort((a, b) => a.title.localeCompare(b.title));