import ConsultantRegister from "./consultant-register";

import React from "react";

export const metadata = {
  title: "Consultant Register: Join Universities Page to Guide Students",
  description: "Join Universities Page today! Consultant Register is open for experts who want to assist students in their study abroad journey and make a real impact on their future.",
  siteName: process.env.NEXT_PUBLIC_APP_WEBSITE_NAME,
  openGraph: {
    title: "Consultant Register: Join Universities Page to Guide Students",
    description: "Join Universities Page today! Consultant Register is open for experts who want to assist students in their study abroad journey and make a real impact on their future.",
    url: `${process.env.NEXT_PUBLIC_APP_URL}/consultant-register`,
    siteName: process.env.NEXT_PUBLIC_APP_WEBSITE_NAME,
    type: "website",
  },
  twitter: {
    card: "summary_large_image",
    title: "Consultant Register: Join Universities Page to Guide Students",
    description: "Join Universities Page today! Consultant Register is open for experts who want to assist students in their study abroad journey and make a real impact on their future.",
  },
  alternates: {
    canonical: `${process.env.NEXT_PUBLIC_APP_URL}/consultant-register`,
  },
  robots: {
    index: true,
    follow: true,
    nocache: false,
    googleBot: {
      index: true,
      follow: true,
      noimageindex: false,
      "max-video-preview": -1,
      "max-image-preview": "large",
      "max-snippet": -1,
    },
  },
};

export default function ConsultantRegisterPage() {
  return (
    <>
      <ConsultantRegister />
    </>
  );
}
