Files
mb-grid-solutions.com/app/layout.tsx
2026-01-29 00:14:30 +01:00

25 lines
475 B
TypeScript

import type { Metadata } from "next";
import "./globals.css";
import Layout from "@/components/Layout";
export const metadata: Metadata = {
title: "MB Grid Solutions",
description: "Ihr Partner für Energiekabelprojekte bis 110 kV.",
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="de">
<body>
<Layout>
{children}
</Layout>
</body>
</html>
);
}