diff --git a/templates/collections.templ b/templates/collections.templ
index 4c27488..d4ec98b 100644
--- a/templates/collections.templ
+++ b/templates/collections.templ
@@ -11,19 +11,38 @@ templ Collection(user User, collections []CollectionData, errorMessage string) {
My Collections
Organize your books into custom collections
-
+
+
+
+
if len(collections) == 0 {
@@ -31,187 +50,53 @@ templ Collection(user User, collections []CollectionData, errorMessage string) {
📚
No Collections Yet
Create collections to organize your books
-
}
for _, col := range collections {
-
-
-
{ col.Icon }
-
-
- ✏️
-
-
- 🗑️
-
+
+
+
+
{ col.Icon }
+
+
+ ✏️
+
+
+ 🗑️
+
+
+
{ col.Name }
+
{ col.Description }
-
{ col.Name }
-
{ col.Description }
}
-
-
-
-
Create Collection
- ✕
-
-
-
-
-
@ErrorToast(errorMessage)