diff --git a/README.md b/README.md
index be0ca357..5ab1bdc9 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,6 @@
-
+
+[*more screenshots and video*](SHOWCASE.MD)
-
Your self hosted YouTube media server
-
-[*more screenshots and video*](SHOWCASE.MD)
-
## Table of contents:
* [Docs](https://docs.tubearchivist.com/) with [FAQ](https://docs.tubearchivist.com/faq/), and API documentation
* [Core functionality](#core-functionality)
diff --git a/SHOWCASE.MD b/SHOWCASE.MD
index ac6fb078..bcc2afb4 100644
--- a/SHOWCASE.MD
+++ b/SHOWCASE.MD
@@ -3,17 +3,23 @@
Video featuring Tube Archivist generously created by [IBRACORP](https://www.youtube.com/@IBRACORP).
## Screenshots
-
+
+*Login Page*: Secure way to access your media collection.
+
+
*Home Page*: Your recent videos, continue watching incomplete videos.
-
+
*All Channels*: A list of all your indexed channels, filtered by subscribed only.
-
+
*Single Channel*: Single channel page with additional metadata and sub pages.
-
+
*Video Page*: Stream your video directly from the interface.
-
-*Downloads Page*: Add, control and monitor your download queue.
+
+*Downloads Page*: Add, control, and monitor your download queue.
+
+
+*Search Page*. Use expressions to quickly search through your collection.
diff --git a/assets/tube-archivist-banner.jpg b/assets/tube-archivist-banner.jpg
deleted file mode 100644
index 4e9503a8..00000000
Binary files a/assets/tube-archivist-banner.jpg and /dev/null differ
diff --git a/assets/tube-archivist-channels.png b/assets/tube-archivist-channels.png
new file mode 100644
index 00000000..ed03da21
Binary files /dev/null and b/assets/tube-archivist-channels.png differ
diff --git a/assets/tube-archivist-download.png b/assets/tube-archivist-download.png
new file mode 100644
index 00000000..68aa0c40
Binary files /dev/null and b/assets/tube-archivist-download.png differ
diff --git a/assets/tube-archivist-front.jpg b/assets/tube-archivist-front.jpg
new file mode 100644
index 00000000..c1f22c43
Binary files /dev/null and b/assets/tube-archivist-front.jpg differ
diff --git a/assets/tube-archivist-home.png b/assets/tube-archivist-home.png
new file mode 100644
index 00000000..8b3641e7
Binary files /dev/null and b/assets/tube-archivist-home.png differ
diff --git a/assets/tube-archivist-login.png b/assets/tube-archivist-login.png
new file mode 100644
index 00000000..45fda814
Binary files /dev/null and b/assets/tube-archivist-login.png differ
diff --git a/assets/tube-archivist-screenshot-channels.png b/assets/tube-archivist-screenshot-channels.png
deleted file mode 100644
index bbed562e..00000000
Binary files a/assets/tube-archivist-screenshot-channels.png and /dev/null differ
diff --git a/assets/tube-archivist-screenshot-download.png b/assets/tube-archivist-screenshot-download.png
deleted file mode 100644
index 7c6e7d7c..00000000
Binary files a/assets/tube-archivist-screenshot-download.png and /dev/null differ
diff --git a/assets/tube-archivist-screenshot-home.png b/assets/tube-archivist-screenshot-home.png
deleted file mode 100644
index d95b2c2e..00000000
Binary files a/assets/tube-archivist-screenshot-home.png and /dev/null differ
diff --git a/assets/tube-archivist-screenshot-single-channel.png b/assets/tube-archivist-screenshot-single-channel.png
deleted file mode 100644
index 3dfc647e..00000000
Binary files a/assets/tube-archivist-screenshot-single-channel.png and /dev/null differ
diff --git a/assets/tube-archivist-screenshot-video.png b/assets/tube-archivist-screenshot-video.png
deleted file mode 100644
index e909a180..00000000
Binary files a/assets/tube-archivist-screenshot-video.png and /dev/null differ
diff --git a/assets/tube-archivist-search.png b/assets/tube-archivist-search.png
new file mode 100644
index 00000000..3bfa086c
Binary files /dev/null and b/assets/tube-archivist-search.png differ
diff --git a/assets/tube-archivist-single-channel.png b/assets/tube-archivist-single-channel.png
new file mode 100644
index 00000000..1ac1b003
Binary files /dev/null and b/assets/tube-archivist-single-channel.png differ
diff --git a/assets/tube-archivist-video.png b/assets/tube-archivist-video.png
new file mode 100644
index 00000000..074c3b7f
Binary files /dev/null and b/assets/tube-archivist-video.png differ
diff --git a/tubearchivist/static/script.js b/tubearchivist/static/script.js
index 6ac8f7ad..91907140 100644
--- a/tubearchivist/static/script.js
+++ b/tubearchivist/static/script.js
@@ -1213,10 +1213,10 @@ function toggleCommentReplies(button) {
if (state === 'none' || state === '') {
document.getElementById(commentReplyId).style.display = 'block';
- button.querySelector('#toggle-icon').innerHTML = '-';
+ button.querySelector('#toggle-icon').innerHTML = '▲';
} else {
document.getElementById(commentReplyId).style.display = 'none';
- button.querySelector('#toggle-icon').innerHTML = '+';
+ button.querySelector('#toggle-icon').innerHTML = '▼';
}
}