Skip to content

improve text-clarity #412

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 22, 2025
Merged

Conversation

Samridha0305
Copy link
Contributor

@Samridha0305 Samridha0305 commented Aug 21, 2025

Description

Text clarity of get started page was not looking good when hovered..

Fixes #391

Type of Change

  • New feature (e.g., new page, component, or functionality)
  • Bug fix (non-breaking change that fixes an issue)
  • UI/UX improvement (design, layout, or styling updates)
  • Performance optimization (e.g., code splitting, caching)
  • Documentation update (README, contribution guidelines, etc.)
  • Other (please specify):

Screenshot

Before:
Screenshot 2025-08-21 182718

After:
Screenshot 2025-08-21 182635

Checklist

  • My code follows the style guidelines of this project.
  • I have tested my changes across major browsers/devices
  • My changes do not generate new console warnings or errors , I ran npm run build and attached scrrenshot in this PR.
  • This is already assigned Issue to me, not an unassigned issue.

Copy link

vercel bot commented Aug 21, 2025

@Samridha0305 is attempting to deploy a commit to the recode Team on Vercel.

A member of the Team first needs to authorize it.

Copy link

Thank you for submitting your pull request! 🙌 We'll review it as soon as possible. The estimated time for response is 5–8 hrs.

In the meantime, please provide all necessary screenshots and make sure you run - npm build run , command and provide a screenshot, a video recording, or an image of the update you made below, which helps speed up the review and assignment. If you have questions, reach out to LinkedIn. Your contributions are highly appreciated!😊

Note: I maintain the repo issue every day twice at 8:00 AM IST and 9:00 PM IST. If your PR goes stale for more than one day, you can tag and comment on this same issue by tagging @sanjay-kv.

We are here to help you on this journey of open source. Consistent 20 contributions are eligible for sponsorship 💰

🎁 check our list of amazing people we sponsored so far: GitHub Sponsorship. ✨

📚Your perks for contribution to this community 👇🏻

  1. Get free Consultation use code recode50 to get free: Mentorship for free.

  2. Get the Ebook for free use code recode at checkout: Data Science cheatsheet for Beginners.

  3. Check out this weekly Newsletter: Sanjay's Newsletter.

If there are any specific instructions or feedback regarding your PR, we'll provide them here. Thanks again for your contribution! 😊

@iitzIrFan iitzIrFan requested a review from Copilot August 21, 2025 19:15
Copy link

@Copilot Copilot AI left a comment

Choose a reason for hiding this comment

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

Pull Request Overview

This PR improves the text clarity and visual design of the get-started page by enhancing button styling, hero banner appearance, and typing animation effects. The changes focus on better hover states, improved color schemes, and enhanced readability.

  • Updated button styles with new colors, glow effects, and improved hover states
  • Enhanced hero banner design with new gradient backgrounds and overlay effects
  • Redesigned typing animation with improved layout and visual effects

Reviewed Changes

Copilot reviewed 2 out of 2 changed files in this pull request and generated 9 comments.

File Description
src/pages/get-started/styles.module.css Updated styling with new color schemes, button animations, hero banner improvements, and redesigned typing animation
src/pages/get-started/index.tsx Simplified typing animation structure and added CSS class bindings for hero elements

Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.

backdrop-filter: blur(8px);
border-image:linear-gradient(to right, #4CC9F0,#60a5fa)1;
}
.buttonPrimary{
Copy link
Preview

Copilot AI Aug 21, 2025

Choose a reason for hiding this comment

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

The .buttonPrimary selector is duplicated. The animation rule on line 92 should be merged with the main .buttonPrimary rule starting at line 85 to avoid redundancy.

Copilot uses AI. Check for mistakes.

}
@keyframes pulse-glow {
0%{ box-shadow: 0 0 0 0 rgba(76,201,240,0.3); }
70% { box-shadow: 0 0 0 15px rgba(76,201,240 ,0); } 100% { box-shadow: 0 0 0 0 rgba(76 ,201 ,240,0); } }
Copy link
Preview

Copilot AI Aug 21, 2025

Choose a reason for hiding this comment

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

Multiple keyframe rules are placed on a single line, making the code difficult to read. Each keyframe percentage should be on its own line for better maintainability.

Suggested change
70% { box-shadow: 0 0 0 15px rgba(76,201,240 ,0); } 100% { box-shadow: 0 0 0 0 rgba(76 ,201 ,240,0); } }
70% { box-shadow: 0 0 0 15px rgba(76,201,240 ,0); }
100% { box-shadow: 0 0 0 0 rgba(76 ,201 ,240,0); }

Copilot uses AI. Check for mistakes.

}
transform: translateY(-3px);
background: #4CC9F0;
box-shadow: 0 8px 24px rgba(76,201,240,0.4); border-color: rgba(255, 255, 255, 0.3); color: #0a0a0a !important;
Copy link
Preview

Copilot AI Aug 21, 2025

Choose a reason for hiding this comment

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

Multiple CSS properties are placed on a single line, making the code difficult to read and maintain. Each property should be on its own line.

Suggested change
box-shadow: 0 8px 24px rgba(76,201,240,0.4); border-color: rgba(255, 255, 255, 0.3); color: #0a0a0a !important;
box-shadow: 0 8px 24px rgba(76,201,240,0.4);
border-color: rgba(255, 255, 255, 0.3);
color: #0a0a0a !important;

Copilot uses AI. Check for mistakes.

position: relative;
display: inline-block;
}
.highlight { color: #4CC9F0; font-weight: 700; position: relative; display: inline-block; }
Copy link
Preview

Copilot AI Aug 21, 2025

Choose a reason for hiding this comment

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

Multiple CSS properties are placed on a single line. For better readability and maintainability, each property should be on its own line.

Suggested change
.highlight { color: #4CC9F0; font-weight: 700; position: relative; display: inline-block; }
.highlight {
color: #4CC9F0;
font-weight: 700;
position: relative;
display: inline-block;
}

Copilot uses AI. Check for mistakes.

}

.heroContent{ position: relative; z-index: 2; }
Copy link
Preview

Copilot AI Aug 21, 2025

Choose a reason for hiding this comment

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

Multiple CSS properties are placed on a single line and there's a missing space after the selector. The rule should be formatted with each property on its own line and proper spacing.

Suggested change
.heroContent{ position: relative; z-index: 2; }
.heroContent {
position: relative;
z-index: 2;
}

Copilot uses AI. Check for mistakes.

padding: 0 1rem;
text-shadow: 0 2px 5px rgba(0,0,0,0.5)
Copy link
Preview

Copilot AI Aug 21, 2025

Choose a reason for hiding this comment

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

Missing semicolon at the end of the CSS property declaration. This could cause parsing issues.

Suggested change
text-shadow: 0 2px 5px rgba(0,0,0,0.5)
text-shadow: 0 2px 5px rgba(0,0,0,0.5);

Copilot uses AI. Check for mistakes.

@@ -468,6 +487,10 @@
background: linear-gradient(90deg, var(--feature-color, #3b82f6), rgba(59, 130, 246, 0.8));
}

.feature:hover .featureTitle::after {
width: 60px;
background: linear-gradient(90deg, var(--feature-color, #3b82f6), rgba(59, 130, 246, 0.8)); }
Copy link
Preview

Copilot AI Aug 21, 2025

Choose a reason for hiding this comment

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

Multiple CSS properties are placed on a single line. Each property should be on its own line for better readability.

Suggested change
background: linear-gradient(90deg, var(--feature-color, #3b82f6), rgba(59, 130, 246, 0.8)); }
background: linear-gradient(90deg, var(--feature-color, #3b82f6), rgba(59, 130, 246, 0.8));
}

Copilot uses AI. Check for mistakes.

.staticText { font-size: 1.6rem; }
.dynamicText { font-size: 1.6rem; height: 2rem; }
.typingWord { font-size: 1.6rem; line-height: 2rem; }
.dynamicText::after { font-size: 1.6rem; line-height: 2rem; }
Copy link
Preview

Copilot AI Aug 21, 2025

Choose a reason for hiding this comment

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

This media query rule duplicates the .typingContainer selector that appears just above it (lines 938-942). The properties should be merged into a single rule to avoid redundancy.

Suggested change
.dynamicText::after { font-size: 1.6rem; line-height: 2rem; }
gap: 0.5rem;
padding: 1rem 1.5rem;
}
.staticText { font-size: 1.6rem; }
.dynamicText { font-size: 1.6rem; height: 2rem; }
.typingWord { font-size: 1.6rem; line-height: 2rem; }
.dynamicText::after { font-size: 1.6rem; line-height: 2rem; }

Copilot uses AI. Check for mistakes.

))}
</div>
<span className={styles.staticText}>Today</span>
<div className={styles.staticText}>
Copy link
Preview

Copilot AI Aug 21, 2025

Choose a reason for hiding this comment

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

The outer div has the same CSS class (staticText) as its first child span element. This creates redundant class application and could lead to unintended styling conflicts.

Suggested change
<div className={styles.staticText}>
<div>

Copilot uses AI. Check for mistakes.

Copy link
Member

@iitzIrFan iitzIrFan left a comment

Choose a reason for hiding this comment

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

Nice bold makeover from the previous design @Samridha0305
LGTM !
@sanjay-kv Ready for merge.

@iitzIrFan iitzIrFan moved this to In Progress in @recode-web Aug 21, 2025
Copy link

vercel bot commented Aug 22, 2025

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Preview Comments Updated (UTC)
recode-website Ready Ready Preview Comment Aug 22, 2025 4:38pm

@sanjay-kv sanjay-kv merged commit 84e3ab8 into recodehive:main Aug 22, 2025
4 checks passed
@github-project-automation github-project-automation bot moved this from In Progress to Done in @recode-web Aug 22, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
Status: Done
Development

Successfully merging this pull request may close these issues.

💡[Feature]: Redesign Hero Section for Better Engagement & Clarity (Get started)
3 participants