50 lines
2.1 KiB
TypeScript
50 lines
2.1 KiB
TypeScript
export default function ImpressumPage() {
|
|
return (
|
|
<div className="container mx-auto px-4 py-8">
|
|
<h1 className="text-3xl font-bold mb-6">Impressum</h1>
|
|
|
|
<section className="mb-8">
|
|
<h2 className="text-xl font-semibold mb-4">Angaben gemäß § 5 TMG</h2>
|
|
<p>Rechtsanwaltskanzlei Mustermann</p>
|
|
<p>Musterstraße 123</p>
|
|
<p>12345 Musterstadt</p>
|
|
</section>
|
|
|
|
<section className="mb-8">
|
|
<h2 className="text-xl font-semibold mb-4">Vertreten durch</h2>
|
|
<p>RA Dr. Max Mustermann</p>
|
|
</section>
|
|
|
|
<section className="mb-8">
|
|
<h2 className="text-xl font-semibold mb-4">Kontakt</h2>
|
|
<p>Telefon: +49 (0) 123 456789</p>
|
|
<p>Telefax: +49 (0) 123 456788</p>
|
|
<p>E-Mail: info@kanzlei-mustermann.de</p>
|
|
</section>
|
|
|
|
<section className="mb-8">
|
|
<h2 className="text-xl font-semibold mb-4">Berufsbezeichnung und berufsrechtliche Regelungen</h2>
|
|
<p>Berufsbezeichnung: Rechtsanwalt (verliehen in Deutschland)</p>
|
|
<p>Zuständige Rechtsanwaltskammer:</p>
|
|
<p>Rechtsanwaltskammer Musterstadt</p>
|
|
<p>Musterallee 1</p>
|
|
<p>12345 Musterstadt</p>
|
|
</section>
|
|
|
|
<section className="mb-8">
|
|
<h2 className="text-xl font-semibold mb-4">Berufsrechtliche Regelungen</h2>
|
|
<ul className="list-disc pl-5">
|
|
<li>Bundesrechtsanwaltsordnung (BRAO)</li>
|
|
<li>Berufsordnung für Rechtsanwälte (BORA)</li>
|
|
<li>Rechtsanwaltsvergütungsgesetz (RVG)</li>
|
|
</ul>
|
|
</section>
|
|
|
|
<section className="mb-8">
|
|
<h2 className="text-xl font-semibold mb-4">Umsatzsteuer-ID</h2>
|
|
<p>Umsatzsteuer-Identifikationsnummer gemäß §27 a Umsatzsteuergesetz:</p>
|
|
<p>DE 123 456 789</p>
|
|
</section>
|
|
</div>
|
|
);
|
|
} |