Files
telenetsystems-2026-02-06-v1/app/layout.tsx
2026-01-28 18:34:47 +01:00

30 lines
515 B
TypeScript

import type { Metadata, Viewport } from "next";
import "@/theme/globals.css";
export const metadata: Metadata = {
title: "Website",
description: "Generated website",
robots: {
index: true,
follow: true,
},
};
export const viewport: Viewport = {
width: "device-width",
initialScale: 1,
themeColor: "#ffffff",
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="de">
<body>{children}</body>
</html>
);
}