--- layout: page title: "Creating custom panels" description: "Introduction to create custom panels for Home Assistant." date: 2016-07-29 13:00 sidebar: true comments: false sharing: true footer: true --- Any component has the possibility to add a panel to the frontend. Panels will be rendered full screen and have real-time access to the Home Assistant object via JavaScript. Examples of this in the app are map, logbook and history. Create a file called `hello.html` in your /panels/. The `hello.html` contains the needed building blocks to create the elements inside the view. ```javascript ``` Create an entry for the new panel in your `configuration.yaml` file: ```yaml panel_custom: - name: hello sidebar_title: Hello World sidebar_icon: mdi:hand-pointing-right url_path: hello ``` For more possibilities, see the [Custom panel section](/cookbook/#user-interface) on our Examples page.