import { Metadata } from "next";

import Footer from "@/components/common/footer";
import ClientNavbar from "@/components/pages/client/common/client-navbar";

export const metadata: Metadata = {
  title: "Services",
  description:
    "Explore the range of participant recruitment services offered by People for Research, from usability testing to global diary studies, ensuring reliable insights for your project.",
  openGraph: {
    title: "Services",
    description:
      "Explore the range of participant recruitment services offered by People for Research, from usability testing to global diary studies, ensuring reliable insights for your project.",
    images: [
      {
        url: "/global-assets/pfr-logo-og-client.svg",
        alt: "People for Research logo, featuring a person inside a circle, representing a focus on human-centered research and activities.",
        width: 200,
        height: 150,
      },
    ],
  },
  twitter: {
    card: "summary_large_image",
    images: "/global-assets/pfr-logo-og-client.svg",
    title: "Services",
    description:
      "Explore the range of participant recruitment services offered by People for Research, from usability testing to global diary studies, ensuring reliable insights for your project.",
  },
};

export default function ServicesLayout({
  children,
}: {
  children: React.ReactNode;
}) {
  return (
    <div className="flex flex-col min-h-screen bg-others-mistyGray dark:bg-jet">
      <ClientNavbar />
      <main className="flex-grow" id="main-content">
        {children}
      </main>
      <Footer source="client" />
    </div>
  );
}
