Displaying side panels as views

I’d like to just have a single navigation bar, preferably bottom or top, and still want to be able to access some of the side panels from the front end (e.g., map, logbook, history, etc.). Is there a way to display a side panel as a view instead of a panel?

Edit: this can be achieved by installing Custom Header in footer mode, setting ‘Always hide the sidebar’ in Profile, and then configuring your lovelace yaml to make each panel an IFrame card, e.g.:

  - title: Map
    path: ../map
    icon: 'mdi:map'
    panel: true
    badges: []
    cards: []
  - title: Logbook
    path: ../logbook
    icon: 'mdi:format-list-bulleted-type'
    badges: []
    cards: []
    panel: true
  - title: History
    path: ../history
    icon: 'mdi:chart-timeline'
    panel: true
    badges: []
    cards: []
  - title: Community
    path: ../hacs/installed
    icon: 'mdi:alpha-c-box'
    badges: []
    cards: []
    panel: true
  - title: Developer Tools
    path: ../developer-tools/info
    icon: 'mdi:hammer'
    panel: true
    badges: []
    cards: []
  - title: Profile
    path: ../profile
    icon: 'mdi:account'
    panel: true
    badges: []
    cards: []
  - panel: true
    title: Configuration
    path: ../config/dashboard
    icon: 'mdi:settings'
    badges: []
    cards: []

The only annoying thing is that there are now two vertical scroll bars.

Sorry for bumping an old thread. Were you ever able to figure this out?