dwd.siliconpin.com/src/app/services/layout.tsx

36 lines
1.1 KiB
TypeScript

import type { Metadata } from "next";
export const metadata: Metadata = {
title: "Services | DWD Consultancy - Data Resilience Experts",
description: "Explore our comprehensive range of services including hardware solutions, FOSS support, and data services. We help organizations keep their data resilient and secure.",
keywords: ["data services", "hardware solutions", "FOSS support", "data resilience", "data recovery", "IT consulting"],
openGraph: {
title: "Services | DWD Consultancy - Data Resilience Experts",
description: "Explore our comprehensive range of services including hardware solutions, FOSS support, and data services.",
url: "https://dwd.siliconpin.com/services",
siteName: "DWD Consultancy",
images: [
{
url: "/og-image-services.jpg",
width: 1200,
height: 630,
alt: "DWD Consultancy Services",
},
],
locale: "en_US",
type: "website",
},
};
export default function ServicesLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<>
{children}
</>
);
}