From 47910b2112aa554f9b3688f76e2567c6b8758a1a Mon Sep 17 00:00:00 2001 From: Akshitha Dasari Date: Sun, 17 May 2026 12:07:34 +0530 Subject: [PATCH 1/3] Improve homepage contributor section UI --- src/components/FloatingContributors/index.tsx | 32 +++++++++---------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/src/components/FloatingContributors/index.tsx b/src/components/FloatingContributors/index.tsx index 33527c07..de76373e 100644 --- a/src/components/FloatingContributors/index.tsx +++ b/src/components/FloatingContributors/index.tsx @@ -87,13 +87,13 @@ interface ContributorActivity { html_url: string; }; action: - | "pushed" - | "created" - | "merged" - | "opened" - | "commented" - | "closed" - | "other"; + | "pushed" + | "created" + | "merged" + | "opened" + | "commented" + | "closed" + | "other"; message?: string; timestamp: Date; timeAgo: string; @@ -219,7 +219,7 @@ const FloatingContributors: React.FC = ({ // Fetch repository events from GitHub API const eventsResponse = await fetch( - "https://api.github.com/repos/recodehive/recode-website/events?per_page=30", + "https://api.github.com/repos/Live GitHub Contributions/events?per_page=30", ); if (!eventsResponse.ok) { @@ -519,17 +519,17 @@ const FloatingContributors: React.FC = ({ headerEmbedded ? {} : { - y: [0, -8, 0], - } + y: [0, -8, 0], + } } transition={ headerEmbedded ? {} : { - duration: 4, - repeat: Infinity, - ease: "easeInOut", - } + duration: 4, + repeat: Infinity, + ease: "easeInOut", + } } > {/* Close button */} @@ -545,7 +545,7 @@ const FloatingContributors: React.FC = ({
👥 - Live Activity + Open Source Contributors
recodehive/recode-website @@ -677,7 +677,7 @@ const FloatingContributors: React.FC = ({ aria-label="View repository on GitHub and join the community" > 🚀 - View Repositories on GitHub + Join Our Open Source Community ↗
From 5534fad7deb3bd0e56a57489b8ad193049426568 Mon Sep 17 00:00:00 2001 From: Akshitha Dasari Date: Sun, 17 May 2026 14:38:37 +0530 Subject: [PATCH 2/3] Revert unrelated changes and fix contributor section --- src/components/FloatingContributors/index.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/FloatingContributors/index.tsx b/src/components/FloatingContributors/index.tsx index de76373e..bcfcedab 100644 --- a/src/components/FloatingContributors/index.tsx +++ b/src/components/FloatingContributors/index.tsx @@ -219,7 +219,7 @@ const FloatingContributors: React.FC = ({ // Fetch repository events from GitHub API const eventsResponse = await fetch( - "https://api.github.com/repos/Live GitHub Contributions/events?per_page=30", + "https://api.github.com/repos/recodehive/recode-website/events?per_page=30", ); if (!eventsResponse.ok) { @@ -545,7 +545,7 @@ const FloatingContributors: React.FC = ({
👥 - Open Source Contributors + Live Activity
recodehive/recode-website @@ -677,7 +677,7 @@ const FloatingContributors: React.FC = ({ aria-label="View repository on GitHub and join the community" > 🚀 - Join Our Open Source Community + View Repositories on GitHub ↗
From cf8d564adb44d971b8adcae24e5cc903b24e0d89 Mon Sep 17 00:00:00 2001 From: Akshitha Dasari Date: Mon, 18 May 2026 23:24:34 +0530 Subject: [PATCH 3/3] Fix blog page heading and subtitle --- src/pages/blogs/index.tsx | 45 ++++++++++++++++++--------------------- 1 file changed, 21 insertions(+), 24 deletions(-) diff --git a/src/pages/blogs/index.tsx b/src/pages/blogs/index.tsx index 946e9660..cab5a607 100644 --- a/src/pages/blogs/index.tsx +++ b/src/pages/blogs/index.tsx @@ -101,14 +101,11 @@ export default function Blogs() {

- Welcome to recode hive{" "} - Blogs + Engineering uptime

+

- Discover comprehensive web development articles, tutorials, and - insights covering everything from HTML & CSS fundamentals to - advanced JavaScript, React, Node.js, Data Structures & - Algorithms, and cutting-edge technologies. + blog by recode community

@@ -182,7 +179,7 @@ export default function Blogs() { {category === "All" ? blogs.length : blogs.filter((blog) => blog.category === category) - .length} + .length} ))} @@ -318,23 +315,23 @@ const BlogCard = ({ blog, index }) => { {/* Author Names */}
- {authors.map((author, authorIndex) => ( - - {authorIndex > 0 && ( - & - )} - - {author.name} - - - ))} + {authors.map((author, authorIndex) => ( + + {authorIndex > 0 && ( + & + )} + + {author.name} + + + ))}
5 min read