import DepartmentPage from "./department-page";


export const metadata = {
  title: "Add Department | Admin Panel",
  description: "Create new user with roles, credentials, and profile details.",
  keywords: ["Next.js", "Department Management", "Admin Panel", "React Form"],
  authors: [{ name: "Developer" }],
  openGraph: {
    title: "Add Department",
    description: "Securely onboard new user with role-based access.",
    url: "https://yourdomain.com/add-user",
    siteName: "Your App Name",
    images: [
      {
        url: "https://yourdomain.com/og-image.png",
        width: 1200,
        height: 630,
        alt: "Add Department Page",
      },
    ],  
    locale: "en_US",
    type: "website",
  },
};

export default function Page() {
  return (
    <DepartmentPage />
  )
 ;
}