redesign
This commit is contained in:
@@ -1,37 +1,54 @@
|
||||
export default function Legal() {
|
||||
return (
|
||||
<div className="container">
|
||||
<section>
|
||||
<h1 className="no-underline">Impressum</h1>
|
||||
<div className="legal-content">
|
||||
<p><strong>Angaben gemäß § 5 TMG</strong></p>
|
||||
<p style={{ marginBottom: '1.5rem' }}>
|
||||
MB Grid Solutions & Services GmbH<br />
|
||||
Raiffeisenstraße 22<br />
|
||||
73630 Remshalden
|
||||
</p>
|
||||
<p><strong>Vertreten durch:</strong></p>
|
||||
<p style={{ marginBottom: '1.5rem' }}>
|
||||
Michael Bodemer<br />
|
||||
Klaus Mintel
|
||||
</p>
|
||||
<p><strong>Kontakt:</strong></p>
|
||||
<p style={{ marginBottom: '1.5rem' }}>
|
||||
E-Mail: <a href="mailto:info@mb-grid-solutions.com">info@mb-grid-solutions.com</a><br />
|
||||
Web: <a href="https://www.mb-grid-solutions.com">www.mb-grid-solutions.com</a>
|
||||
</p>
|
||||
<p><strong>Registereintrag:</strong></p>
|
||||
<p style={{ marginBottom: '1.5rem' }}>
|
||||
Eintragung im Handelsregister.<br />
|
||||
Registergericht: Amtsgericht Stuttgart<br />
|
||||
Registernummer: HRB 803379
|
||||
</p>
|
||||
<p><strong>Urheberrecht:</strong></p>
|
||||
<p>
|
||||
Alle auf der Website veröffentlichten Texte, Bilder und sonstigen Informationen unterliegen – sofern nicht anders gekennzeichnet – dem Urheberrecht. Jede Vervielfältigung, Verbreitung, Speicherung, Übermittlung, Wiedergabe bzw. Weitergabe der Inhalte ohne schriftliche Genehmigung ist ausdrücklich untersagt.
|
||||
</p>
|
||||
<div className="bg-slate-50 min-h-screen pt-32 pb-20">
|
||||
<div className="container-custom">
|
||||
<div className="max-w-4xl mx-auto bg-white p-8 md:p-16 rounded-[2.5rem] shadow-sm border border-slate-100">
|
||||
<h1 className="text-4xl font-extrabold text-primary mb-12">Impressum</h1>
|
||||
|
||||
<div className="space-y-12 text-slate-600 leading-relaxed">
|
||||
<section>
|
||||
<h2 className="text-xl font-bold text-primary mb-4">Angaben gemäß § 5 TMG</h2>
|
||||
<p>
|
||||
MB Grid Solutions & Services GmbH<br />
|
||||
Raiffeisenstraße 22<br />
|
||||
73630 Remshalden
|
||||
</p>
|
||||
</section>
|
||||
|
||||
<section>
|
||||
<h2 className="text-xl font-bold text-primary mb-4">Vertreten durch</h2>
|
||||
<p>
|
||||
Michael Bodemer<br />
|
||||
Klaus Mintel
|
||||
</p>
|
||||
</section>
|
||||
|
||||
<section>
|
||||
<h2 className="text-xl font-bold text-primary mb-4">Kontakt</h2>
|
||||
<p>
|
||||
E-Mail: <a href="mailto:info@mb-grid-solutions.com" className="text-accent hover:underline">info@mb-grid-solutions.com</a><br />
|
||||
Web: <a href="https://www.mb-grid-solutions.com" className="text-accent hover:underline">www.mb-grid-solutions.com</a>
|
||||
</p>
|
||||
</section>
|
||||
|
||||
<section>
|
||||
<h2 className="text-xl font-bold text-primary mb-4">Registereintrag</h2>
|
||||
<p>
|
||||
Eintragung im Handelsregister.<br />
|
||||
Registergericht: Amtsgericht Stuttgart<br />
|
||||
Registernummer: HRB 803379
|
||||
</p>
|
||||
</section>
|
||||
|
||||
<section>
|
||||
<h2 className="text-xl font-bold text-primary mb-4">Urheberrecht</h2>
|
||||
<p>
|
||||
Alle auf der Website veröffentlichten Texte, Bilder und sonstigen Informationen unterliegen – sofern nicht anders gekennzeichnet – dem Urheberrecht. Jede Vervielfältigung, Verbreitung, Speicherung, Übermittlung, Wiedergabe bzw. Weitergabe der Inhalte ohne schriftliche Genehmigung ist ausdrücklich untersagt.
|
||||
</p>
|
||||
</section>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user