import Head from "next/head"; const AppHead = ({ title, ogTitle }: { title?: string; ogTitle?: string }) => { // Do not translate. Head attributes won't have access to i18n. const description = "Assemble, configure, and deploy autonomous AI Agents in your browser."; return ( {title ?? "AgentGPT"} ); }; export default AppHead;