feat: Scaffold new Next.js website with core pages, components, and assets.

This commit is contained in:
1elle1
2026-02-06 11:19:57 +01:00
parent d63eb85218
commit db27ebf76f
53 changed files with 7756 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
import type { MetadataRoute } from "next";
const baseUrl = "https://www.telenetsystems.at";
export default function sitemap(): MetadataRoute.Sitemap {
return [
"",
"/internet",
"/fernsehen",
"/telefonie",
"/leistungen",
"/ueber-uns",
"/impressum",
"/datenschutz"
].map((path) => ({
url: `${baseUrl}${path}`,
lastModified: new Date(),
changeFrequency: "monthly",
priority: path === "" ? 1 : 0.8
}));
}