-
-
Notifications
You must be signed in to change notification settings - Fork 266
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
Changes in CSS and All Routes of Navbar and Login Css also #999
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -470,10 +470,10 @@ | |||||||||||||
<header> | ||||||||||||||
<!-- <input type="checkbox" name="" id="toggler"> | ||||||||||||||
<label for="toggler" class="fas fa-bars"></label> --> | ||||||||||||||
<a href="#" class="logo">Resum Resume<span>.</span></a> | ||||||||||||||
<a href="/" class="logo">Resum Resume<span>.</span></a> | ||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Maintain consistent routing approach The navigation links use inconsistent URL formats:
This inconsistency could cause navigation issues. Consider using absolute paths consistently. Apply this diff to maintain consistency: <a href="/" class="logo">Resum Resume<span>.</span></a>
<nav class="navbar">
<a href="/">Home</a>
- <a href="about.html">About</a>
- <a href="resume.html">Build Resume</a>
+ <a href="/about">About</a>
+ <a href="/resume">Build Resume</a> Also applies to: 476-479 |
||||||||||||||
|
||||||||||||||
<nav class="navbar"> | ||||||||||||||
<a href="#home">Home</a> | ||||||||||||||
<a href="/">Home</a> | ||||||||||||||
<a href="about.html">About</a> | ||||||||||||||
<a href="resume.html">Build Resume</a> | ||||||||||||||
<!-- <a href="signup.html">Sign Up</a> --> | ||||||||||||||
|
@@ -502,7 +502,7 @@ | |||||||||||||
</header> | ||||||||||||||
<nav class="mobile-navbar"> | ||||||||||||||
<div class="main-links"> | ||||||||||||||
<a href="#home">Home</a> | ||||||||||||||
<a href="/">Home</a> | ||||||||||||||
<a href="about.html">About</a> | ||||||||||||||
<a href="resume.html">Build Resume</a> | ||||||||||||||
Comment on lines
+505
to
507
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Apply consistent routing in mobile navigation The mobile navigation links have the same inconsistency as the main navigation. Apply this diff to maintain consistency: - <a href="/">Home</a>
- <a href="about.html">About</a>
- <a href="resume.html">Build Resume</a>
+ <a href="/">Home</a>
+ <a href="/about">About</a>
+ <a href="/resume">Build Resume</a> 📝 Committable suggestion
Suggested change
|
||||||||||||||
</div> | ||||||||||||||
|
@@ -610,34 +610,34 @@ <h2>Why Choose Us?</h2> | |||||||||||||
<div class="footer-section"> | ||||||||||||||
<h3>About Us</h3> | ||||||||||||||
<ul class="ul"> | ||||||||||||||
<li><a href="#">Our Story</a></li> | ||||||||||||||
<li><a href="#">Team</a></li> | ||||||||||||||
<li><a href="#">Careers</a></li> | ||||||||||||||
<li><a href="/">Our Story</a></li> | ||||||||||||||
<li><a href="/">Team</a></li> | ||||||||||||||
<li><a href="/">Careers</a></li> | ||||||||||||||
Comment on lines
+613
to
+615
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Implement proper routing for footer links Footer links currently point to "/" which is incorrect. Each link should point to its respective page. Apply this diff to implement proper routing: - <li><a href="/">Our Story</a></li>
- <li><a href="/">Team</a></li>
- <li><a href="/">Careers</a></li>
+ <li><a href="/about/story">Our Story</a></li>
+ <li><a href="/about/team">Team</a></li>
+ <li><a href="/careers">Careers</a></li>
- <li><a href="/">Resume Builder</a></li>
- <li><a href="/">CV Templates</a></li>
- <li><a href="/">Career Advice</a></li>
+ <li><a href="/resume">Resume Builder</a></li>
+ <li><a href="/templates">CV Templates</a></li>
+ <li><a href="/career-advice">Career Advice</a></li>
- <li><a href="/">FAQ</a></li>
- <li><a href="/">Contact Us</a></li>
+ <li><a href="/faq">FAQ</a></li>
+ <li><a href="/contact">Contact Us</a></li> Also applies to: 621-623, 629-630 |
||||||||||||||
</ul> | ||||||||||||||
</div> | ||||||||||||||
<div class="footer-section"> | ||||||||||||||
<h3>Services</h3> | ||||||||||||||
<ul class="ul"> | ||||||||||||||
<li><a href="#">Resume Builder</a></li> | ||||||||||||||
<li><a href="#">CV Templates</a></li> | ||||||||||||||
<li><a href="#">Career Advice</a></li> | ||||||||||||||
<li><a href="/">Resume Builder</a></li> | ||||||||||||||
<li><a href="/">CV Templates</a></li> | ||||||||||||||
<li><a href="/">Career Advice</a></li> | ||||||||||||||
</ul> | ||||||||||||||
</div> | ||||||||||||||
<div class="footer-section"> | ||||||||||||||
<h3>Support</h3> | ||||||||||||||
<ul class="ul"> | ||||||||||||||
<li><a href="#">FAQ</a></li> | ||||||||||||||
<li><a href="#">Contact Us</a></li> | ||||||||||||||
<li><a href="/">FAQ</a></li> | ||||||||||||||
<li><a href="/">Contact Us</a></li> | ||||||||||||||
<li><a href="privacypolicy.html">Privacy Policy</a></li> | ||||||||||||||
</ul> | ||||||||||||||
</div> | ||||||||||||||
<div class="footer-section"> | ||||||||||||||
<h3>Connect With Us</h3> | ||||||||||||||
<div class="social-icons"> | ||||||||||||||
<a href="#"><i class="fab fa-facebook-f"></i></a> | ||||||||||||||
<a href="#"><i class="fab fa-x-twitter"></i></a> | ||||||||||||||
<a href="#"><i class="fab fa-linkedin-in"></i></a> | ||||||||||||||
<a href="#"><i class="fab fa-instagram"></i></a> | ||||||||||||||
<a href="/"><i class="fab fa-facebook-f"></i></a> | ||||||||||||||
<a href="/"><i class="fab fa-x-twitter"></i></a> | ||||||||||||||
<a href="/"><i class="fab fa-linkedin-in"></i></a> | ||||||||||||||
<a href="/"><i class="fab fa-instagram"></i></a> | ||||||||||||||
Comment on lines
+637
to
+640
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Fix social media links Social media links incorrectly point to "/". They should link to the respective social media profiles. Apply this diff: - <a href="/"><i class="fab fa-facebook-f"></i></a>
- <a href="/"><i class="fab fa-x-twitter"></i></a>
- <a href="/"><i class="fab fa-linkedin-in"></i></a>
- <a href="/"><i class="fab fa-instagram"></i></a>
+ <a href="https://facebook.com/resumbuilder" target="_blank" rel="noopener noreferrer"><i class="fab fa-facebook-f"></i></a>
+ <a href="https://twitter.com/resumbuilder" target="_blank" rel="noopener noreferrer"><i class="fab fa-x-twitter"></i></a>
+ <a href="https://linkedin.com/company/resumbuilder" target="_blank" rel="noopener noreferrer"><i class="fab fa-linkedin-in"></i></a>
+ <a href="https://instagram.com/resumbuilder" target="_blank" rel="noopener noreferrer"><i class="fab fa-instagram"></i></a>
|
||||||||||||||
</div> | ||||||||||||||
</div> | ||||||||||||||
</div> | ||||||||||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
💡 Codebase verification
Navigation patterns need standardization across the application
The verification reveals inconsistent navigation patterns throughout the application:
Suggested standardization:
🔗 Analysis chain
Review and standardize navigation patterns
Several issues with the navigation implementation:
Consider these improvements:
Let's verify the navigation patterns across other pages:
Also applies to: 17-22, 27-29
Let me search for specific navigation patterns to better understand the current implementation and verify the concerns raised in the review comment.
🏁 Scripts executed
The following scripts were executed for the analysis:
Script:
Length of output: 2577
Script:
Length of output: 15215