42 lines
1.1 KiB
JavaScript
42 lines
1.1 KiB
JavaScript
export default function Impressum() {
|
|
return (
|
|
<div className="max-w-3xl mx-auto py-20 px-4">
|
|
<h1 className="text-3xl font-bold mb-6">Impressum</h1>
|
|
<p>
|
|
Michael Stüve<br />
|
|
Pixelbrew<br />
|
|
Lindenstr. 6<br />
|
|
14548 Schwielowsee<br />
|
|
Deutschland<br /><br />
|
|
E-Mail: kontakt@pixelbrew.de<br />
|
|
</p>
|
|
|
|
<h3>Allgemeine Angaben</h3>
|
|
<p>
|
|
<b>Internet:</b>{" "}
|
|
<a href="https://pixelbrew.de" target="_blank" rel="noopener noreferrer">
|
|
https://pixelbrew.de
|
|
</a>
|
|
</p>
|
|
<p>
|
|
<b>Name des Diensteanbieters:</b> Pixelbrew Einzelunternehmen
|
|
</p>
|
|
<p>
|
|
<b>Vertreten durch:</b> Michael Stüve
|
|
</p>
|
|
|
|
<h3>Anschrift und Kontakt</h3>
|
|
<p>Lindenstr. 6</p>
|
|
<p>14548 Schwielowsee</p>
|
|
<p>
|
|
<b>Telefon:</b>{" "}
|
|
<a href="tel:0160955392322">0160955392322</a>
|
|
</p>
|
|
<p>
|
|
<b>Email:</b>{" "}
|
|
<a href="mailto:kontakt@pixelbrew.de">kontakt@pixelbrew.de</a>
|
|
</p>
|
|
</div>
|
|
);
|
|
}
|