migrate to nextjs

This commit is contained in:
2026-01-29 00:14:30 +01:00
parent 081dad7cf9
commit 0853a497ef
34 changed files with 4879 additions and 5956 deletions

24
app/layout.tsx Normal file
View File

@@ -0,0 +1,24 @@
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>
);
}