Refactor "Impressum" and "Datenschutz" pages: add SubpageHero, revise structure, improve content formatting.
This commit is contained in:
@@ -1,50 +1,58 @@
|
||||
'use client';
|
||||
|
||||
import SubpageHero from '@/components/SubpageHero';
|
||||
|
||||
export default function ImpressumPage() {
|
||||
return (
|
||||
<div className="container mx-auto px-4 py-8">
|
||||
<h1 className="text-3xl font-bold mb-6">Impressum</h1>
|
||||
<>
|
||||
<SubpageHero title="Impressum" />
|
||||
|
||||
<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>
|
||||
<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>
|
||||
|
||||
<section className="mb-8">
|
||||
<h2 className="text-xl font-semibold mb-4">Vertreten durch</h2>
|
||||
<p>RA Dr. Max Mustermann</p>
|
||||
</section>
|
||||
<div>
|
||||
<h2 className="text-xl font-semibold mb-2">Vertreten durch</h2>
|
||||
<p>RA Dr. Max Mustermann</p>
|
||||
</div>
|
||||
|
||||
<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>
|
||||
<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>
|
||||
|
||||
<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>
|
||||
<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>
|
||||
|
||||
<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>
|
||||
<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>
|
||||
|
||||
<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>
|
||||
<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>
|
||||
</>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user