import { useTranslation } from "next-i18next"; import React, { useEffect, useState } from "react"; import { FaDiscord, FaGithub } from "react-icons/fa"; import {FaXTwitter} from 'react-icons/fa6'; import Dialog from "../../ui/dialog"; export default function HelpDialog() { const [show, setShow] = useState(false); useEffect(() => { const key = "agentgpt-modal-opened-v0.2"; const savedModalData = localStorage.getItem(key); setTimeout(() => { if (savedModalData == null) { setShow(true); } }, 1500); localStorage.setItem(key, JSON.stringify(true)); }, []); const [t] = useTranslation(); return ( } >

AgentGPT is the next generation of Google search. Ask any question and watch as an AI Agent gives you the perfect answer after aggregating relevant sources from across the internet.


{t("FOLLOW_THE_JOURNEY", { ns: "help" })}

window.open("https://discord.gg/jdSBAnmdnY", "_blank")} >
window.open( "https://twitter.com/asimdotshrestha/status/1644883727707959296", "_blank" ) } >
window.open("https://github.com/reworkd/AgentGPT", "_blank")} >
); }