Consolidate and upload changes from recent work
This commit is contained in:
parent
05a69bf274
commit
da2e46aab2
20 changed files with 1844 additions and 1566 deletions
49
src/routes/de/imprint.tsx
Normal file
49
src/routes/de/imprint.tsx
Normal file
|
@ -0,0 +1,49 @@
|
|||
import { Body, Title } from "solid-start";
|
||||
import Navbar, { lightMode } from "~/components/en/Navbar";
|
||||
import "~/styles/overview.scss";
|
||||
|
||||
function imprint() {
|
||||
return (
|
||||
<Body class="overview" classList={{ "light-mode": lightMode() }}>
|
||||
<Title>Impressum</Title>
|
||||
<Navbar />
|
||||
|
||||
<article>
|
||||
<h1>Impressum</h1>
|
||||
|
||||
<h2>Verantwortlich für den Inhalt gemäß § 18 Abs. 1 MStV:</h2>
|
||||
<p>Julian Gerhardt</p>
|
||||
|
||||
<h2>Technischer Ansprechpartner:</h2>
|
||||
<p>
|
||||
Aron Malcher
|
||||
<br />
|
||||
<br />
|
||||
Unlimited Development
|
||||
<br />
|
||||
<br />
|
||||
Brunnenstr. 12
|
||||
<br />
|
||||
48531 Nordhorn
|
||||
<br />
|
||||
Deutschland
|
||||
<br />
|
||||
<br />
|
||||
E-Mail:{" "}
|
||||
<a href="mailto:aron@unlimited-dev.de">aron@unlimited-dev.de</a>
|
||||
</p>
|
||||
|
||||
<h2>Hinweis:</h2>
|
||||
<p>
|
||||
Die redaktionelle Verantwortung für die Inhalte der Webseite liegt bei
|
||||
Julian Gerhardt. Technische Fragen und Anfragen richten Sie bitte an
|
||||
den technischen Ansprechpartner von Unlimited Development, welche als
|
||||
Hosting- und IT-Service agiert, jedoch nicht für den redaktionellen
|
||||
Inhalt verantwortlich ist.
|
||||
</p>
|
||||
</article>
|
||||
</Body>
|
||||
);
|
||||
}
|
||||
|
||||
export default imprint;
|
Loading…
Add table
Add a link
Reference in a new issue