Summary:
Two conflicting routes for /:
<Route path='/' element={<Home />} /> // inside Layout
<Route path='/' element={<LandingPage />} /> // outside Layout
Impact:
Routing unpredictable — one route shadowed, confusing for maintainers.
Suggested Fix:
Consolidate into one definition or redirect based on auth state.