import type { Metadata } from "next";
import { getChatGPTUser } from "@/app/chatgpt-auth";
import { getEntryMode } from "@/lib/onboarding";
import AgentEntry from "@/app/create-agent/agent-entry";
import "@/app/create-agent/onboarding.css";

export const dynamic="force-dynamic";
export const metadata:Metadata={title:"Create an AI agent for your business | NEXORA AI",description:"Create an AI agent for customer service, sales or bookings, add approved company knowledge and test it before launch.",alternates:{canonical:"/en/create-agent",languages:{ar:"/create-agent",en:"/en/create-agent"}}};
export default async function Page(){const [user,entry]=await Promise.all([getChatGPTUser(),getEntryMode()]);return <AgentEntry isAr={false} user={user} entry={entry}/>}
