Inherit components in SPA without placing them in editable templates Hello, guys,my colleagues and I are implementing a SPA application using AEM and Angular. The decision we are currently facing is the following: where can we insert specific components so that they appear in more than one page (always in the same spot) without using the templates?Components like these are the header, the footer, plus a bunch of other components specific for our SPA.Previously, in the implementation that did not rely on Angular (and that was heavily server-side rendered), we would insert these components as:<div data-sly-test.resourceType="resource/type/of/header}"
data-sly-resource="${'/content/path/to/homepage/jcr:content/header' @ resourceType=resourceType}"></div> inside the HTML of the structure used by the templates of the pages we wanted to have the component. So that, for example, our editors could go to the homepage, where they'd find the header-component and then configure it.And the changes would propagate everywhere in the pa