Files
mb-grid-solutions.com/app/impressum/page.tsx
2026-01-29 00:14:30 +01:00

38 lines
1.6 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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>
</section>
</div>
);
}