Created the Imprint.jsx legal page

This commit is contained in:
Mathias Wagner 2023-08-04 12:04:53 +02:00
parent 48aab0c6dd
commit 01c6567599
Signed by: Mathias
GPG Key ID: B8DC354B0A1F5B44

View File

@ -0,0 +1,15 @@
import "./styles.sass";
export const Imprint = () => {
return (
<>
<div className="imprint-area">
<h1 className="home-header">Impressum</h1>
<h2 className="home-subtext">Angaben gemäß § 5 TMG</h2>
<p>Mathias Wagner<br/>c/o IP-Management #14358<br/>Ludwig-Erhard-Str. 18<br/>20459 Hamburg</p>
<h2>Kontakt</h2><p>E-Mail: mathias@gnmyt.dev</p><p>Quelle: <a href="https://www.e-recht24.de" target="_blank">eRecht24</a></p>
</div>
</>
)
}