27 lines
592 B
Plaintext
27 lines
592 B
Plaintext
---
|
|
import { SITE_TITLE, SITE_DESCRIPTION } from "../consts";
|
|
import H1 from "../components/ui/headings/H1.astro";
|
|
import Page from "../layouts/Page.astro";
|
|
---
|
|
|
|
<Page title={SITE_TITLE} description={SITE_DESCRIPTION}>
|
|
<main>
|
|
<H1>Imprint</H1>
|
|
<h2 class="text-2xl">Information according to § 5 TMG</h2>
|
|
|
|
Lars Hampe
|
|
<br />
|
|
Address available upon request.
|
|
<h2 class="text-2xl">Contact</h2>
|
|
|
|
Phone: +49 (0)551 200 19 224
|
|
<br />
|
|
E-Mail: hello@hashdot.co
|
|
<br />
|
|
<br />
|
|
Responsible for editorial content
|
|
<br />
|
|
Lars Hampe
|
|
</main>
|
|
</Page>
|