Files
telenetsystems-2026-02-06-v1/app/layout.tsx
T

66 lines
1.9 KiB
TypeScript

import type { Metadata, Viewport } from "next";
import { SiteFooter } from "@/components/site-footer";
import { SiteHeader } from "@/components/site-header";
import "./globals.css";
export const metadata: Metadata = {
metadataBase: new URL("https://www.telenetsystems.at"),
title: {
default: "TeleNetSystems Reutte | Internet, TV und Telefonie in Tirol",
template: "%s | TeleNetSystems"
},
description:
"TeleNetSystems aus Reutte bietet Internet, Fernsehen, Telefonie und IT-Services fuer Privat- und Geschaeftskunden in Tirol. Transparent, regional und gut erreichbar.",
keywords: [
"Internet Reutte",
"TV Anbieter Tirol",
"Telefonie Tirol",
"IT Support Reutte",
"Telekommunikation Tirol",
"Business Internet Tirol"
],
openGraph: {
title: "TeleNetSystems Reutte",
description:
"Regionaler IT- und Telekompartner in Tirol fuer Internet, Fernsehen und Telefonie mit direktem Support.",
url: "https://www.telenetsystems.at",
siteName: "TeleNetSystems",
locale: "de_AT",
type: "website",
images: [
{
url: "/assets/hero/internet-header-431619ac.jpg",
width: 1200,
height: 630,
alt: "TeleNetSystems Infrastruktur in Tirol"
}
]
},
icons: {
icon: "/assets/logo/logo-systems-9fd0db14.png"
}
};
export const viewport: Viewport = {
width: "device-width",
initialScale: 1,
themeColor: "#0c1d2a"
};
export default function RootLayout({ children }: { children: React.ReactNode }) {
return (
<html lang="de">
<body>
<a className="sr-only focus:not-sr-only focus:absolute focus:left-3 focus:top-3 focus:z-50 focus:rounded-md focus:bg-white focus:px-3 focus:py-2" href="#inhalt">
Zum Inhalt springen
</a>
<SiteHeader />
<main id="inhalt">{children}</main>
<SiteFooter />
</body>
</html>
);
}