Spaces:
Runtime error
Runtime error
File size: 2,461 Bytes
cd6f98e | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 | 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 (
<Dialog
inline
open={show}
setOpen={setShow}
title="Welcome!"
actions={
<>
<button
type="button"
className="inline-flex w-full justify-center rounded-md bg-sky-500 px-3 py-2 text-sm font-semibold text-white shadow-sm hover:bg-sky-400"
onClick={() => {
setShow(false);
}}
>
Get Started
</button>
</>
}
>
<div>
<p>
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.
</p>
<br />
<p className="mt-2 text-center font-bold">{t("FOLLOW_THE_JOURNEY", { ns: "help" })}</p>
<div className="mt-4 flex w-full items-center justify-center gap-5">
<div
className="cursor-pointer rounded-full bg-slate-6 p-3 hover:bg-slate-8"
onClick={() => window.open("https://discord.gg/jdSBAnmdnY", "_blank")}
>
<FaDiscord size={30} />
</div>
<div
className="cursor-pointer rounded-full bg-slate-6 p-3 hover:bg-slate-8"
onClick={() =>
window.open(
"https://twitter.com/asimdotshrestha/status/1644883727707959296",
"_blank"
)
}
>
<FaXTwitter size={30} />
</div>
<div
className="cursor-pointer rounded-full bg-slate-6 p-3 hover:bg-slate-8"
onClick={() => window.open("https://github.com/reworkd/AgentGPT", "_blank")}
>
<FaGithub size={30} />
</div>
</div>
</div>
</Dialog>
);
}
|