redesign
This commit is contained in:
@@ -1,10 +1,17 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Inter } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import Layout from "@/components/Layout";
|
||||
|
||||
const inter = Inter({
|
||||
subsets: ["latin"],
|
||||
display: "swap",
|
||||
variable: "--font-inter",
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "MB Grid Solutions",
|
||||
description: "Ihr Partner für Energiekabelprojekte bis 110 kV.",
|
||||
title: "MB Grid Solutions | Ihr Partner für Energiekabelprojekte",
|
||||
description: "Spezialisierter Partner für Energiekabelprojekte bis 110 kV. Herstellerneutrale technische Beratung und Projektbegleitung.",
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
@@ -13,8 +20,8 @@ export default function RootLayout({
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
return (
|
||||
<html lang="de">
|
||||
<body>
|
||||
<html lang="de" className={`${inter.variable}`}>
|
||||
<body className="antialiased">
|
||||
<Layout>
|
||||
{children}
|
||||
</Layout>
|
||||
|
||||
Reference in New Issue
Block a user