Merge version_2 into main #2
@@ -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>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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() {
|
||||
<MetricCardTwo
|
||||
title="Our Track Record"
|
||||
description="Proven expertise and consistent service delivery for businesses in Potsdam"
|
||||
titleSegments={[
|
||||
{ type: "text", content: "" }
|
||||
]}
|
||||
tagIcon={Clock}
|
||||
metrics={[
|
||||
{ id: "1", value: "12+", description: "Years of Service" },
|
||||
{ id: "2", value: "500+", description: "Clients Served" },
|
||||
@@ -187,4 +191,4 @@ export default function HomePage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user