Description
The fixed navbar currently overlaps the hero section on the Home page and other pages, making the UI look cramped.
Steps to Reproduce
- Run the project locally (
npm run dev).
- Observe the Home page: the hero section starts directly under the navbar with no spacing.
Expected Behavior
There should be clear spacing between the navbar and the hero section (and all page content).
Fix Implemented
Added global top padding (pt-24) to the main content wrapper in App.jsx to reserve space equal to the navbar height.
Description
The fixed navbar currently overlaps the hero section on the Home page and other pages, making the UI look cramped.
Steps to Reproduce
npm run dev).Expected Behavior
There should be clear spacing between the navbar and the hero section (and all page content).
Fix Implemented
Added global top padding (
pt-24) to the main content wrapper inApp.jsxto reserve space equal to the navbar height.