2024-05-23 09:42:14 +00:00
|
|
|
// SPDX-FileCopyrightText: 2013-2018 JC Brand <https://github.com/conversejs/converse.js/>
|
|
|
|
// SPDX-FileCopyrightText: 2024 John Livingston <https://www.john-livingston.fr/>
|
|
|
|
//
|
|
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2022-01-07 15:35:12 +00:00
|
|
|
import { html } from 'lit'
|
2024-07-11 15:53:50 +00:00
|
|
|
import { api } from '@converse/headless/index.js'
|
2021-11-09 09:55:12 +00:00
|
|
|
|
|
|
|
export default () => html`
|
|
|
|
<div class="inner-content converse-brand row">
|
|
|
|
<div class="converse-brand__heading">
|
|
|
|
<img src="${api.settings.get('assets_path')}/../../images/logo.svg">
|
|
|
|
</div>
|
|
|
|
</div>`
|