I am struggling with positioning 3 components on my react page: PageHeader, SideMenu & FeatureList (which consists of Display Cards). Here is the code for each component:
App.js
// App.js code here...
PageHeader.js
// PageHeader.js code here...
SideMenu.js
// SideMenu.js code here...
Features.js
// Features.js code here...
DisplayCard.js
// DisplayCard.js code here...
The current output is causing overlap between the Header and Feature Cards. I have tried various solutions with Grid and Flexbox but as a beginner, I am finding it challenging to resolve the issue. Any guidance or assistance on how to prevent this overlap would be highly appreciated.