The footer quick links in the help center page (src/pages/help-center.html) are not properly redirecting to their intended destinations. Users clicking on these links encounter broken navigation, leading to a poor user experience.
- File:
src/pages/help-center.html - Section: Footer quick links (Company, Support, Services sections)
-
Company Section:
- About Us (
about.htmlβ should be../../src/pages/about.html) - Pricing Plans (
pricing.htmlβ should be../../src/pages/pricing.html) - Our Blog (correctly linked)
- Contact Us (correctly linked)
- About Us (
-
Support Section:
- Help Center (correctly linked)
- Ask a Question (
Askaques.htmlβ should be../../src/pages/Askaques.html) - Privacy Policy (correctly linked)
- Terms & Conditions (correctly linked)
-
Services Section:
- Explore Cars (correctly linked)
- Rent Your Car (correctly linked)
- Offline Centers (correctly linked)
- Login (
login.htmlβ should be../../src/pages/login.html)
-
Header Navigation:
- Logo link (
index.htmlβ should be../../index.html) - All navigation menu items have incorrect relative paths
- Logo link (
All footer quick links should properly redirect users to their respective pages without any broken links.
Clicking on the affected links results in 404 errors or navigation to non-existent pages due to incorrect relative path references.
The issue is caused by incorrect relative path references. Since the help center page is located in src/pages/, the links need to use ../../ to navigate back to the root directory before accessing other pages.
- All footer quick links redirect to correct pages
- Header navigation links work properly
- No broken links in the help center page
- Consistent navigation experience across the site
bughelp-wantedgood-first-issuenavigationfooter
This is a relatively simple fix that involves updating relative path references. Good for new contributors to work on.
Priority: Medium
Difficulty: Easy
Estimated Time: 15-30 minutes