diff --git a/src/app/layout.tsx b/src/app/layout.tsx index a45995b..9f6b985 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -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 ( - - - - - {children} - + + + {children} +