feat: Add initial Next.js website for TelenetSystems, including core pages, components, and assets.

This commit is contained in:
1elle1
2026-02-05 11:48:56 +01:00
parent 7702605dac
commit abae2b3f21
65 changed files with 9969 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
import type { Metadata } from "next";
export const metadata: Metadata = {
title: "Internet",
description:
"Schnelles und stabiles Internet von TeleNetSystems. Zuverlässige Verbindungen für Privat- und Geschäftskunden in Tirol.",
};
export default function InternetLayout({
children,
}: {
children: React.ReactNode;
}) {
return children;
}