import { LitElementWw } from '@webwriter/lit' import { CSSResult, TemplateResult, html, css } from 'lit' import { customElement } from 'lit/decorators.js' import { globalStyles } from '@/global_styles' import { CCard } from '../reusables/c-card' import SlDetails from '@shoelace-style/shoelace/dist/components/details/details.component.js' import { msg } from '@lit/localize' export class HelpAboutCard extends LitElementWw { static scopedElements = { 'c-card': CCard, 'sl-details': SlDetails, } // STYLES - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - static styles: CSSResult[] = [ globalStyles, css` .developerSlDetails::part(content) { margin: 0; padding: 0; height: 700px; } iframe { width: 100%; height: 100%; } `, ] // RENDER - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - render(): TemplateResult<1> { return html`
${msg('About this app')}

${msg( 'This app was developed by Christian Koch, a student at RWTH Aachen University, with support of Frederic Salmen and the chair i9 at RWTH Aachen University.', )}

${msg( 'All third-party data sets have been published under public domain', )}

` } }