-
Notifications
You must be signed in to change notification settings - Fork 153
Description
Describe the bug
When the user is on the About page and clicks the Home link in the navbar, it does not redirect to the main homepage (index.html). The link seems unresponsive or points to an incorrect path, preventing navigation back to the homepage.
To Reproduce
Steps to reproduce the issue:
Open the About page (about.html).
Click on the Home link in the navbar.
Observe that the page does not redirect to the main homepage.
Expected behavior
When the Home link is clicked from the About page, it should correctly redirect the user to the root index.html file located in the main project folder.
Additional context
The href path might be incorrect (e.g., pointing to /src/index.html instead of ../index.html or ../../index.html).
Navbar code may not be dynamically handling relative paths between pages inside and outside the /src directory.