32 lines
704 B
TypeScript
32 lines
704 B
TypeScript
import type { Metadata } from "next";
|
|
import "./globals.css";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "MBO-Tech-IT | Docker, Kubernetes & Cloud-Infrastruktur",
|
|
description:
|
|
"Ihr Experte fur Docker-Installationen, Kubernetes-Orchestrierung, Proxmox-Virtualisierung und Hetzner Cloud-Infrastruktur. IT-Losungen fur Hard- und Software.",
|
|
keywords: [
|
|
"Docker",
|
|
"Kubernetes",
|
|
"Proxmox",
|
|
"Hetzner",
|
|
"Cloud",
|
|
"IT",
|
|
"Virtualisierung",
|
|
"Container",
|
|
"DevOps",
|
|
],
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}) {
|
|
return (
|
|
<html lang="de" className="scroll-smooth">
|
|
<body>{children}</body>
|
|
</html>
|
|
);
|
|
}
|