Look in browser dev tools for routing errors like:
Cannot match any routes. URL Segment: 'auth/login'
Missing RouterOutlet
2. Ensure <ion-router-outlet> is Present
In your root component (usually app.component.html or wherever your layout starts), you need:
<ion-router-outlet></ion-router-outlet>
If it’s missing, Angular has nowhere to render the component when routing.