25 lines
475 B
TypeScript
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>
|
|
);
|
|
}
|