import type { Metadata } from "next";
import FarmerProviders from "@/components/farmer/FarmerProviders";

export const metadata: Metadata = {
  title: "Apply for the Pilot | AGNET Global",
  description:
    "Join the AGNET farmer waitlist. Get notified when the district pilot launches with digital farm identity, ML credit scoring, and bank routing in your region.",
  manifest: "/manifest.json",
  openGraph: {
    title: "Apply for the Pilot | AGNET Global",
    description:
      "Sign up for the AGNET farmer waitlist to access formal finance in Uzbekistan.",
    type: "website",
  },
};

export default function FarmerApplyLayout({
  children,
}: {
  children: React.ReactNode;
}) {
  return <FarmerProviders>{children}</FarmerProviders>;
}
