Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/components/Community/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export const LandingCommunity: FC<Props> = ({ className }) => {
{
stat: githubReposCount,
statText: githubReposCountText,
description: "Live public projects on RecodHive, demonstrating the power of open-source collaboration.",
description: "Live public projects on Recode Hive, demonstrating the power of open-source collaboration.",
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Revert this change.

href: "https://github.com/orgs/recodehive/repositories?q=visibility%3Apublic+archived%3Afalse",
label: "Public Repositories"
},
Expand Down Expand Up @@ -129,7 +129,7 @@ export const LandingCommunity: FC<Props> = ({ className }) => {
handleCardClick("https://github.com/recodehive");
}
}}
title="Click to visit RecodHive GitHub Organization"
title="Click to visit Recode Hive GitHub Organization"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Same as above.

>
<img
className="landing-community__image"
Expand All @@ -138,7 +138,7 @@ export const LandingCommunity: FC<Props> = ({ className }) => {
loading="lazy"
/>
<div className="landing-community__info-text">
Our developers are the core of RecodHive community. We take pride in
Our developers are the core of Recode Hive community. We take pride in
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

same

our{" "}
<span className="landing-community__link">
GitHub organization
Expand All @@ -147,7 +147,7 @@ export const LandingCommunity: FC<Props> = ({ className }) => {
<span className="landing-community__link">
contributors and maintainers
</span>{" "}
powering RecodHive's growth.
powering Recode Hive's growth.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

same

<div className="external-link-indicator">
<span className="external-link-icon">↗</span>
<small>Click to explore our GitHub</small>
Expand Down
23 changes: 22 additions & 1 deletion src/components/FloatingContributors/FloatingContributors.css
Original file line number Diff line number Diff line change
Expand Up @@ -784,13 +784,20 @@
display: flex;
align-items: center;
justify-content: center;
font-size: 11px;
font-size: 8px;
font-weight: 600;
color: rgba(255, 255, 255, 0.7);
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
cursor: pointer;
}

.contributors-more span {
font-size: 8px;
line-height: 1;
display: inline-block;
text-align: center;
}

.contributors-more:hover {
background: rgba(102, 126, 234, 0.2);
border-color: rgba(102, 126, 234, 0.5);
Expand Down Expand Up @@ -986,6 +993,13 @@
font-size: 10px;
}

.contributors-more span {
font-size: 6.5px;
line-height: 1;
display: inline-block;
text-align: center;
}

.contributors-cta {
padding: 10px 14px;
font-size: 13px;
Expand Down Expand Up @@ -1042,6 +1056,13 @@
height: 24px;
font-size: 9px;
}

.contributors-more span {
font-size: 6.5px;
line-height: 1;
display: inline-block;
text-align: center;
}
}

/* Extra small screens */
Expand Down
2 changes: 1 addition & 1 deletion src/database/projects/projects.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { OurProjectsData } from "../../components/ourProjects";
const projectsData: OurProjectsData = {
tag: "Our Projects",
title: "Explore Our Latest Projects and Innovations",
description: "Discover our diverse projects showcasing all the begineer friendly opensource contributions, innovative applications. Each project represents our commitment to excellence and continuous learning.",
description: "Discover our diverse projects showcasing all the beginner friendly opensource contributions, innovative applications. Each project represents our commitment to excellence and continuous learning.",
Copy link
Member

@iitzIrFan iitzIrFan Oct 3, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Revert this changes as covered #686

items: [
{
title: "Awesome GitHub Profile",
Expand Down
Loading