import { useEffect } from "react"; import { BsDiscord, BsFacebook, BsInstagram, BsTelegram, BsTwitter, } from "react-icons/bs"; import Button from "../Button"; import MysteriousText from "./MysteriousText"; type Props = {}; const Introduction = (props: Props) => { // create animate when user scroll to this section useEffect(() => { const section = document.getElementById("section1"); if (section) { section.addEventListener("scroll", () => { console.log("scroll"); }); } }, []); return (

A digital currency payment for SGPT chat bot services

The SGPT Token is a digital currency designed to facilitate payments for services provided by the SGPT chat bot. The chat bot is a powerful tool that utilizes artificial intelligence to communicate with users and provide valuable information and services.

Join Our Community

); }; export default Introduction;