### Describe the feature ### Description Clicking the AOSSIE / PictoPy logo in the navbar should smoothly scroll the page back to the top instead of only acting as a route link. This improves navigation UX, especially on long landing pages. ### Expected Behavior - Clicking the navbar logo scrolls smoothly to the top of the page - Works consistently on desktop and mobile - Does not reload the page ### Proposed Implementation Handle logo click in Navbar.tsx using window.scrollTo with smooth behavior. ``` window.scrollTo({ top: 0, behavior: "smooth" }); ``` ### Files Affected ``` Navbar.tsx ``` ### Add ScreenShots https://github.com/user-attachments/assets/578ad9b9-7e21-422a-a054-0091e1ebcb02 ### Record - [x] I agree to follow this project's Code of Conduct - [x] I want to work on this issue
Describe the feature
Description
Clicking the AOSSIE / PictoPy logo in the navbar should smoothly scroll the page back to the top instead of only acting as a route link.
This improves navigation UX, especially on long landing pages.
Expected Behavior
Proposed Implementation
Handle logo click in Navbar.tsx using window.scrollTo with smooth behavior.
Files Affected
Add ScreenShots
Scroll.to.top.mp4
Record