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}
+
-
);
-}
\ No newline at end of file
+}
diff --git a/src/app/page.tsx b/src/app/page.tsx
index 48dc724..d4ca7b7 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -9,7 +9,7 @@ import ContactFaq from "@/components/sections/contact/ContactFaq";
import FooterCard from "@/components/sections/footer/FooterCard";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import Link from "next/link";
-import { Phone, Mail, Zap, Server, Wifi, Lock, CheckCircle, Users, Brain, Shield } from "lucide-react";
+import { Phone, Mail, Zap, Server, Wifi, Lock, CheckCircle, Users, Brain, Shield, Clock } from "lucide-react";
const navItems = [
{ name: "Home", id: "/" },
@@ -132,6 +132,10 @@ export default function HomePage() {
);
-}
\ No newline at end of file
+}