From e6b1f428fba04a99864e6b26e9bc956fb1e96dad Mon Sep 17 00:00:00 2001 From: Kai Chen Date: Wed, 22 Apr 2026 02:01:32 -0700 Subject: [PATCH] chore(home): friendlier digest/library blurbs, reindent projects map - Update Ginger Cat + Berkeley libraries blurbs with friendlier copy and trailing exclamation marks. - Reindent the projects.map JSX block (no behavior change). Co-authored-by: Claude Made-with: Cursor --- app/page.tsx | 90 ++++++++++++++++++++++++++-------------------------- 1 file changed, 45 insertions(+), 45 deletions(-) diff --git a/app/page.tsx b/app/page.tsx index d595cfb..4d1b8c2 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -69,7 +69,7 @@ export default async function Home() {

Want a daily digest from my Ginger Cat bot?

- It's on{" "} + It's now on{" "} news.kaichen.dev - . + !

-

Want to check the availability of all libraries at Berkeley?

+

Wondering which library is still open right now at Berkeley?

- See{" "} + Check{" "} here - . + !

@@ -186,47 +186,47 @@ export default async function Home() {

) : ( projects.map(({ name, desc, href, repo, stack }) => ( - -
- - ↗ - -

- {name} -

- -
- {desc ? ( -

- {desc} -

- ) : null} - {stack.length > 0 ? ( -
- {stack.map((tag) => ( - - {tag} + +
+ + ↗ - ))} -
- ) : null} -
+

+ {name} +

+ +
+ {desc ? ( +

+ {desc} +

+ ) : null} + {stack.length > 0 ? ( +
+ {stack.map((tag) => ( + + {tag} + + ))} +
+ ) : null} + )) )}