30 lines
486 B
Svelte
30 lines
486 B
Svelte
<script context="module" lang="ts">
|
|
export async function load() {
|
|
return {
|
|
stuff: {
|
|
title: 'Impressum',
|
|
description: 'The impressum I have to include for Germany.',
|
|
},
|
|
};
|
|
}
|
|
</script>
|
|
|
|
<h1>Impressum</h1>
|
|
|
|
<p>Information according to §5 TMG:</p>
|
|
|
|
<ul>
|
|
<li>Alexander Daichendt</li>
|
|
<li>Wiesenweg 10a</li>
|
|
<li>85464 Neufinsing</li>
|
|
<li>GERMANY</li>
|
|
</ul>
|
|
|
|
<p>Contact:</p>
|
|
<ul><li>privacy@daichendt.one</li></ul>
|
|
|
|
<style>
|
|
ul {
|
|
list-style-type: none;
|
|
}
|
|
</style>
|