After spending the whole day on Google, my question remains unanswered.
As I am new to creating Angular app using version 6.0.4. my first and simple question is:
Is it possible to configure Angular app with multilevel landing pages?
Example: Without exposing the links on top nav bar of the root page, I need direct links to these pages where the users have their own different menus. like: WordPress/admin panel is different than its website.
/home
for public view/admin
for admin section after login/customer
for customer section after login
this is because I found that there is only one app.component.html
file where we can include our components using Routing but with static navigation bar on the top.
If not:
How to run multiple apps created for all above 3 section can be run under the same
url:port
?