43 lines
1.5 KiB
TypeScript
43 lines
1.5 KiB
TypeScript
import type { Metadata } from "next";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Impressum",
|
|
description: "Impressum der TeleNetSystems GmbH gemaess oesterreichischer Informationspflichten."
|
|
};
|
|
|
|
export default function ImpressumPage() {
|
|
return (
|
|
<section className="section-block">
|
|
<div className="container-shell max-w-3xl space-y-7">
|
|
<header>
|
|
<p className="eyebrow">Rechtliches</p>
|
|
<h1 className="mt-2 text-4xl font-semibold text-alpine-900">Impressum</h1>
|
|
</header>
|
|
|
|
<article className="surface-card space-y-4">
|
|
<h2 className="text-xl font-semibold text-alpine-900">Angaben gemaess Paragraf 5 ECG</h2>
|
|
<p className="text-sm text-alpine-700">
|
|
TeleNetSystems GmbH<br />
|
|
Untermarkt 12<br />
|
|
6600 Reutte<br />
|
|
Oesterreich
|
|
</p>
|
|
<p className="text-sm text-alpine-700">
|
|
Telefon: +43 5672 219 40<br />
|
|
E-Mail: kontakt@telenetsystems.at
|
|
</p>
|
|
<p className="text-sm text-alpine-700">
|
|
Firmenbuchnummer: FN 000000a<br />
|
|
Firmenbuchgericht: Landesgericht Innsbruck<br />
|
|
UID-Nummer: ATU00000000
|
|
</p>
|
|
<p className="text-sm text-alpine-700">
|
|
Hinweis: Diese Angaben sind als Platzhalter zu verstehen und muessen vor Livegang mit den offiziellen
|
|
Unternehmensdaten abgeglichen werden.
|
|
</p>
|
|
</article>
|
|
</div>
|
|
</section>
|
|
);
|
|
}
|