What approach is common for a header (top of page) that’s common to all pages on an app? Left side typically for icon and name of app, right side for common actions, user avatar icon, etc.?
A component that you include on every page?
If I understand what you are looking for, that is probably copying the app component from Dynamic Components up into your app and modifying that.
The app component is what gives the toolbar and the sidenav. So if the content is exactly the same and always shown regardless of what page you are on, it should probably in the app commponent.
Ah, I see it, in the Apex Dynamic Components library, “App”
And I see some dependencies (which have to stay), and Methods (which can be altered to affect the sidenav and toolbar components.
Got it, thanks!