I wanted to display a page for \'n\' seconds and then redirect to another route.
Came across a couple of stackoverflow posts (url1 and url2) about auto redirecting after
its a-bit sketchy but this will work.
setTimeout(() => { setTimeout(() => { this.router.navigateByUrl("/home"); }); }, 3400); }