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 {
@Icon("book", "h-7 w-7")

No books found

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

} }