From 750400af5a8dbc23bfc66c9e00b7736ce8b83090 Mon Sep 17 00:00:00 2001 From: Kai Chen Date: Fri, 24 Jul 2026 16:53:53 -0700 Subject: [PATCH] feat: add Blogs category with Lilian Weng to Things I Love Add a Blogs group under Content Creators on /misc, starting with Lilian Weng's blog (lilianweng.github.io). Co-authored-by: Claude --- app/misc/page.tsx | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/app/misc/page.tsx b/app/misc/page.tsx index 6baa424..116f5d1 100644 --- a/app/misc/page.tsx +++ b/app/misc/page.tsx @@ -75,6 +75,14 @@ const THING_GROUPS = [ ], ], }, + { + category: "Blogs", + rows: [ + [ + { name: "Lilian Weng", href: "https://lilianweng.github.io/" }, + ], + ], + }, { category: "Musicians", rows: [ @@ -125,7 +133,7 @@ const countThingItems = (categories: string[]) => ); const LEFT_THING_CATEGORIES = ["Productivity Tools", "Musicians"]; -const RIGHT_THING_CATEGORIES = ["Developer Tools", "TV Shows", "Content Creators"]; +const RIGHT_THING_CATEGORIES = ["Developer Tools", "TV Shows", "Content Creators", "Blogs"]; const travelBelongsOnLeft = countThingItems(LEFT_THING_CATEGORIES) < countThingItems(RIGHT_THING_CATEGORIES); @@ -135,7 +143,7 @@ const THING_LAYOUT = [ : LEFT_THING_CATEGORIES, travelBelongsOnLeft ? RIGHT_THING_CATEGORIES - : ["Developer Tools", "Travel Tools", "TV Shows", "Content Creators"], + : ["Developer Tools", "Travel Tools", "TV Shows", "Content Creators", "Blogs"], ]; type AttentionUpdate = {