11import * as React from "react" ;
22import { v4 as uuidv4 } from 'uuid' ;
33import posthog from 'posthog-js' ;
4-
4+ import { Tooltip } from 'react-tooltip'
55
66
77import EnterImage from './assets/images/enter.svg' ;
@@ -23,6 +23,7 @@ import { ClipLoader } from "react-spinners";
2323import { FiSettings } from "react-icons/fi" ;
2424import { AiFillWarning } from "react-icons/ai" ;
2525import { ConnectedDataSource , DataSourceType } from "./data-source" ;
26+ import { MdOutlineSupportAgent } from "react-icons/md" ;
2627
2728export interface AppState {
2829 query : string
@@ -281,7 +282,15 @@ export default class App extends React.Component <{}, AppState>{
281282 render ( ) {
282283 return (
283284 < div >
285+ < Tooltip id = "my-tooltip" style = { { fontSize : "18px" } } />
284286 < ToastContainer className = 'z-50' theme = "colored" />
287+ < a href = "https://discord.com/channels/1060085859497549844/1086664063767023636" rel = "noreferrer" target = '_blank' >
288+ < MdOutlineSupportAgent data-tooltip-id = "my-tooltip"
289+ data-tooltip-content = "π 24/7 live support on Discord π¨βπ§"
290+ data-tooltip-place = "bottom"
291+ className = "absolute left-0 z-30 hover:fill-[#a7a1fe] fill-[#8983e0] float-left ml-6 mt-6 text-[42px] hover:cursor-pointer transition-all duration-300 hover:drop-shadow-2xl" >
292+ </ MdOutlineSupportAgent >
293+ </ a >
285294 < FiSettings onClick = { this . openModal } stroke = { "#8983e0" }
286295 className = "absolute right-0 z-30 float-right mr-6 mt-6 text-[42px] hover:cursor-pointer hover:rotate-90 transition-all duration-300 hover:drop-shadow-2xl" >
287296 </ FiSettings >
0 commit comments