Button Card - navigation not working when show in side bar is off

My goal is to remove from the sidebar those items I use very little. I am trying to create a designer page with buttons to jump to the views that are listed in the sidebar. Example: ESPHome, I don’t need to go to it so I don’t need it in the sidebar. But I would like a button that would take me there if needed. I have a button card

show_name: true
show_icon: true
type: button
tap_action:
  action: navigate
  navigation_path: /5c53de3b_esphome
icon: ''
icon_height: 40px
name: ESPHome

It works correctly if the “show in sidebar” is on but not if it is turned off.
any suggestions?

can you try hass_ingress, maybe will help you.
use ingress make esphome support ingress visit:

ingress:
  ingress:
    work_mode: iframe
    ui_mode: replace
    title: Navigation
    icon: mdi:cursor-default-click
    url: /lovelace/your_subview_page
  esphome:
    parent: ingress
    work_mode: hassio
    title: ESPHome
    icon: mdi:chip
    url: 5c53de3b_esphome

then button card:

tap_action:
  action: navigate
  navigation_path: /ingress/esphome

Thank you for your suggestion:

Here is my new card that works:

show_name: true
show_icon: true
type: button
tap_action:
  action: navigate
  navigation_path: /hassio/ingress/5c53de3b_esphome
# old navigation_path: /5c53de3b_esphome
icon: mdi:puzzle-check-outline
icon_height: 40px
name: ESPHome