fixed home in footer link of index page#298
fixed home in footer link of index page#298zyzpaprika wants to merge 1 commit intoopensource-society:mainfrom
Conversation
There was a problem hiding this comment.
Greptile Summary
This PR fixes a navigation issue in the index.html file where the home link in the footer was not functioning correctly. The problem was that the hero section had an invalid ID attribute containing a space (id="homeSection top") which prevented proper anchor link navigation. The change corrects this by updating the ID to id="homeSection" (line 148), ensuring that when users click the "Home" link in the footer, it properly scrolls to the hero section.
This is a straightforward bug fix that addresses a basic user experience issue with the site's navigation. The footer contains anchor links to different sections of the page, and this fix ensures the home link works as intended alongside the other footer navigation links.
Confidence score: 1/5
- This PR addresses the specific navigation issue but the index.html file contains critical structural problems that make it unsafe to merge
- The file has severe HTML validation issues including duplicate
<main>tags, duplicate navigation sections, and improper nesting that would break the page functionality - Files needing attention: index.html requires significant structural cleanup before this fix can be safely merged
1 file reviewed, no comments
invalid ID attribute in the footer of the index page, now fixed!