diff --git a/gallery/public/images/logo-with-text.png b/gallery/public/images/logo-with-text.png new file mode 100644 index 0000000000..c47eaa7112 Binary files /dev/null and b/gallery/public/images/logo-with-text.png differ diff --git a/gallery/src/pages/design.home-assistant.io/editing.markdown b/gallery/src/pages/design.home-assistant.io/editing.markdown index 2a503ced6a..742a79eeea 100644 --- a/gallery/src/pages/design.home-assistant.io/editing.markdown +++ b/gallery/src/pages/design.home-assistant.io/editing.markdown @@ -2,6 +2,8 @@ title: Editing design.home-assistant.io --- +![Home Assistant Logo](/images/logo-with-text.png) + # How to edit design.home-assistant.io All pages are stored in [the pages folder][pages-folder] on GitHub. Pages are grouped in a folder per sidebar section. Each page can contain a `.markdown` description file, a `.ts` demo file or both. If both are defined the description is rendered first. The description can contain metadata to specify the title of the page. @@ -41,15 +43,12 @@ import { html, css, LitElement } from "lit"; import { customElement } from "lit/decorators"; import "../../../../src/components/ha-card"; - @customElement("demo-user-experience-usability") export class DemoUserExperienceUsability extends LitElement { protected render() { return html` -
- Hello world! -
+
Hello world!
`; }