59 lines
2.4 KiB
TypeScript
59 lines
2.4 KiB
TypeScript
'use client';
|
|
|
|
import SubpageHero from '@/components/SubpageHero';
|
|
|
|
export default function ImpressumPage() {
|
|
return (
|
|
<>
|
|
<SubpageHero title="Impressum" />
|
|
|
|
<main className="bg-white py-20 px-6 md:px-16 lg:px-36 text-gray-900">
|
|
<section className="max-w-6xl w-full mx-auto space-y-10 text-lg text-gray-700">
|
|
<div>
|
|
<h2 className="text-xl font-semibold mb-2">Angaben gemäß § 5 TMG</h2>
|
|
<p>Kanzlei Mustermann & Künstler Partnerschaft mbB</p>
|
|
<p>Musterstraße 123</p>
|
|
<p>12345 Musterstadt</p>
|
|
</div>
|
|
|
|
<div>
|
|
<h2 className="text-xl font-semibold mb-2">Vertreten durch</h2>
|
|
<p>RA Dr. Max Mustermann</p>
|
|
</div>
|
|
|
|
<div>
|
|
<h2 className="text-xl font-semibold mb-2">Kontakt</h2>
|
|
<p>Telefon: +49 (0) 123 456789</p>
|
|
<p>Telefax: +49 (0) 123 456788</p>
|
|
<p>E-Mail: info@kanzlei-mustermann.de</p>
|
|
</div>
|
|
|
|
<div>
|
|
<h2 className="text-xl font-semibold mb-2">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>
|
|
</div>
|
|
|
|
<div>
|
|
<h2 className="text-xl font-semibold mb-2">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>
|
|
</div>
|
|
|
|
<div>
|
|
<h2 className="text-xl font-semibold mb-2">Umsatzsteuer-ID</h2>
|
|
<p>Umsatzsteuer-Identifikationsnummer gemäß §27 a Umsatzsteuergesetz:</p>
|
|
<p>DE 123 456 789</p>
|
|
</div>
|
|
</section>
|
|
</main>
|
|
</>
|
|
);
|
|
}
|