51 lines
1.5 KiB
TypeScript
51 lines
1.5 KiB
TypeScript
import LegalPageShell from '../components/LegalPageShell'
|
|
|
|
export default function ImpressumPage() {
|
|
return (
|
|
<LegalPageShell
|
|
title="Impressum"
|
|
subtitle="Anbieterkennzeichnung und Pflichtangaben fuer die Nutzung von innungsapp.com."
|
|
>
|
|
<div className="legal-sections">
|
|
<section className="legal-section">
|
|
<h2>Angaben gemaess § 5 DDG</h2>
|
|
<p>Johannes Tils</p>
|
|
<p>Einzelunternehmer</p>
|
|
<p>Zeppelinstr. 21</p>
|
|
<p>42781 Haan</p>
|
|
<p>Deutschland</p>
|
|
</section>
|
|
|
|
<section className="legal-section">
|
|
<h2>Kontakt</h2>
|
|
<p>Telefon: 015771172597</p>
|
|
<p>
|
|
E-Mail:{' '}
|
|
<a className="legal-link" href="mailto:johannestils@aol.com">
|
|
johannestils@aol.com
|
|
</a>
|
|
</p>
|
|
</section>
|
|
|
|
<section className="legal-section">
|
|
<h2>Umsatzsteuer-ID gemaess § 27a UStG</h2>
|
|
<p>DE356594917</p>
|
|
</section>
|
|
|
|
<section className="legal-section">
|
|
<h2>Handelsregister</h2>
|
|
<p>Nicht vorhanden.</p>
|
|
</section>
|
|
|
|
<section className="legal-section">
|
|
<h2>Verantwortlich fuer journalistisch-redaktionelle Inhalte gemaess § 18 Abs. 2 MStV (soweit einschlaegig)</h2>
|
|
<p>Johannes Tils</p>
|
|
<p>Zeppelinstr. 21</p>
|
|
<p>42781 Haan</p>
|
|
<p>Deutschland</p>
|
|
</section>
|
|
</div>
|
|
</LegalPageShell>
|
|
)
|
|
}
|