diff --git a/website/main.js b/website/main.js
index b56a83c..609d2ab 100644
--- a/website/main.js
+++ b/website/main.js
@@ -134,6 +134,7 @@ function createPost(t) {
+
`;
@@ -541,6 +542,7 @@ async function fetchPosts() {
text: item.post.record.text,
likes: item.post.likeCount || 0,
reposts: item.post.repostCount || 0,
+ comments: item.post.replyCount || 0,
url: `https://bsky.app/profile/${item.post.author.handle}/post/${item.post.uri.split("/").pop()}`,
embed: embeds
};
diff --git a/website/style.css b/website/style.css
index 5f51fef..1b2c5c7 100644
--- a/website/style.css
+++ b/website/style.css
@@ -3,6 +3,7 @@
--main-fg: #f0f0f0;
--accent: #2563eb;
--like: #db2777;
+ --comment: #059669;
--github: #181717;
--youtube: #FF0000;
--steam: #1b2838;
@@ -339,6 +340,11 @@ a:has(.image-placeholder) {
transform: rotate(1deg);
}
+.action-btn.comment {
+ color: var(--comment);
+ transform: rotate(-0.5deg);
+}
+
.avatar-img {
width: 250px;
margin: 20px auto;