Update src/app/layout.tsx

This commit is contained in:
2026-03-03 17:51:56 +00:00
parent bdef9b034c
commit b3370e8ce2

View File

@@ -1,46 +1,28 @@
import type { Metadata } from "next";
import { DM_Sans } from "next/font/google";
import { Geist, Geist_Mono } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const dmSans = DM_Sans({
variable: "--font-dm-sans",
subsets: ["latin"],
const geist = Geist({
variable: "--font-geist-sans", subsets: ["latin"],
});
const geistMono = Geist_Mono({
variable: "--font-geist-mono", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Datadiorama - IT Systemhaus für Potsdam",
description: "Professional IT consulting and system services for businesses in Potsdam. Infrastructure management, network solutions, and IT administration since 2013.",
keywords: "IT consulting Potsdam, IT system house, network services, IT administration, business IT solutions",
metadataBase: new URL("https://datadiorama.de"),
alternates: {
canonical: "https://datadiorama.de",
},
openGraph: {
title: "Datadiorama - IT Systemhaus für Potsdam",
description: "Your trusted IT partner for system solutions and consulting in Potsdam",
siteName: "Datadiorama",
type: "website",
},
robots: {
index: true,
follow: true,
},
};
title: "Datadiorama - IT Systemhaus Potsdam", description: "Professional IT infrastructure management and system solutions since 2013. Your trusted IT partner in Potsdam."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${dmSans.variable} antialiased`}>
<Tag />
{children}
<html lang="en">
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1408,7 +1390,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}