push
This commit is contained in:
14
innungsapp/apps/admin/app/impressum/layout.tsx
Normal file
14
innungsapp/apps/admin/app/impressum/layout.tsx
Normal file
@@ -0,0 +1,14 @@
|
||||
import type { Metadata } from 'next'
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: 'Impressum | InnungsApp PRO',
|
||||
description: 'Impressum der InnungsApp PRO.',
|
||||
}
|
||||
|
||||
export default function ImpressumLayout({
|
||||
children,
|
||||
}: {
|
||||
children: React.ReactNode
|
||||
}) {
|
||||
return <>{children}</>
|
||||
}
|
||||
50
innungsapp/apps/admin/app/impressum/page.tsx
Normal file
50
innungsapp/apps/admin/app/impressum/page.tsx
Normal file
@@ -0,0 +1,50 @@
|
||||
import LegalPageShell from '../components/LegalPageShell'
|
||||
|
||||
export default function ImpressumPage() {
|
||||
return (
|
||||
<LegalPageShell
|
||||
title="Impressum"
|
||||
subtitle="Anbieterkennzeichnung und Pflichtangaben fuer die Nutzung von innungsapp.com."
|
||||
>
|
||||
<div className="legal-sections">
|
||||
<section className="legal-section">
|
||||
<h2>Angaben gemaess § 5 DDG</h2>
|
||||
<p>Johannes Tils</p>
|
||||
<p>Einzelunternehmer</p>
|
||||
<p>Zeppelinstr. 21</p>
|
||||
<p>42781 Haan</p>
|
||||
<p>Deutschland</p>
|
||||
</section>
|
||||
|
||||
<section className="legal-section">
|
||||
<h2>Kontakt</h2>
|
||||
<p>Telefon: 015771172597</p>
|
||||
<p>
|
||||
E-Mail:{' '}
|
||||
<a className="legal-link" href="mailto:johannestils@aol.com">
|
||||
johannestils@aol.com
|
||||
</a>
|
||||
</p>
|
||||
</section>
|
||||
|
||||
<section className="legal-section">
|
||||
<h2>Umsatzsteuer-ID gemaess § 27a UStG</h2>
|
||||
<p>DE356594917</p>
|
||||
</section>
|
||||
|
||||
<section className="legal-section">
|
||||
<h2>Handelsregister</h2>
|
||||
<p>Nicht vorhanden.</p>
|
||||
</section>
|
||||
|
||||
<section className="legal-section">
|
||||
<h2>Verantwortlich fuer journalistisch-redaktionelle Inhalte gemaess § 18 Abs. 2 MStV (soweit einschlaegig)</h2>
|
||||
<p>Johannes Tils</p>
|
||||
<p>Zeppelinstr. 21</p>
|
||||
<p>42781 Haan</p>
|
||||
<p>Deutschland</p>
|
||||
</section>
|
||||
</div>
|
||||
</LegalPageShell>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user