package templates import "bookhoard/internal/handlers" templ BooksGrid(books []handlers.BookInfo, limit int, offset int, count int, currentLibraryID string) { if len(books) > 0 { for _, book := range books { @BookCard(book) } } else {

📚 No books found

Try adjusting your filters or add some books to your library.

} }