// Impressum — Originaltext von kilian-springer.com

function ImpressumPage({ lang }) {
  const de = lang === 'de';
  return (
    <>
      <h2>{de ? 'Angaben nach § 5 Abs. 1 DDG und § 18 Abs. 2 MStV' : 'Information according to § 5 (1) DDG and § 18 (2) MStV'}</h2>

      <p>
        Kilian Springer<br />
        Nürnberger Str. 29<br />
        04103 Leipzig<br />
        {de ? 'E-Mail' : 'Email'}: hello [at] <a href="https://kilian-springer.com" target="_blank" rel="noreferrer">kilian-springer.com</a><br />
        Web: <a href="https://www.kilian-springer.com" target="_blank" rel="noreferrer">www.kilian-springer.com</a><br />
        UST-ID: DE323972934
      </p>

      <p>
        {de
          ? 'Verantwortlich für den Inhalt der Seiten im Sinne des § 18 Abs. 2 MStV: Kilian Springer, Nürnberger Str. 29, 04103 Leipzig'
          : 'Responsible for the content of the pages in the sense of § 18 (2) MStV: Kilian Springer, Nürnberger Str. 29, 04103 Leipzig'}
      </p>
    </>
  );
}

Object.assign(window, { ImpressumPage });
