Here is the HTML code that I am working with:
<app-navbar></app-navbar>
<router-outlet></router-outlet>
My goal is to have an image set as the background for the home view, which consists of two components: navbarComponent and homeComponent (selectors). However, I do not want this background image to be applied to other components like contactComponent (which should use a different image) with the selectors app-navbar and app-contact.
Any suggestions on how I can achieve using an image as a background specifically for the view created by the app-navbar and app-home components?