diff --git a/src/pages/logs/bookshelf.astro b/src/pages/logs/bookshelf.astro
index fef5056..a37b67e 100644
--- a/src/pages/logs/bookshelf.astro
+++ b/src/pages/logs/bookshelf.astro
@@ -41,16 +41,24 @@ const sortedYears = Object.keys(booksByYear).sort((a: any, b: any) => b - a);
on the shelf
- {booksShelf.map((book) => (
+ {booksShelf.length !== 0 ? (
+ booksShelf.map((book) => (
- 📚 {book.title}
- ))}
+ ))
+ ) : (
+ currently empty...
+ )}
on the nightstand
-
- {booksReading.map((book) => (
- - 📖 {book.title}
- ))}
+
+ {booksReading.length !== 0 ? (
+ booksReading.map((book) => (
+ - 📖 {book.title}
+ ))
+ ) : (
+ currently empty...
+ )}
{sortedYears.map(year => (