import robotImage from "../../../assets/images/robot-2.png"; import robotImage2 from "../../../assets/images/robot-coin1.png"; import robotBgr from "../../../assets/images/robot-bgr.png"; import Button from "../Button"; import { BsFacebook, BsDiscord, BsTwitter, BsTelegram, BsInstagram, } from "react-icons/bs"; import { MdContentCopy } from "react-icons/md"; import { useSprings, useSpring, animated } from "@react-spring/web"; const socials = [ { name: "Telegram", icon: , link: "https://twitter.com/SGPT_SmartAi", background: "bg-[#2ca5e0]", }, { name: "Twitter", icon: , link: "https://twitter.com/SGPT_SmartAi", background: "bg-[#1da1f2]", }, { name: "Discord", icon: , link: "https://discord.com/invite/NNHV8JHBhk", background: "bg-[#7289da]", }, { name: "Facebook", icon: , link: "https://www.facebook.com/SGPTSmartAi", background: "bg-[#3b5998]", }, { name: "Instagram", icon: , link: "https://www.instagram.com/sgpt_smartai/", background: "bg-[#e1306c]", }, ]; const FirstSection = () => { const address = "0x3c97331438e90680a17c35905ffc2b8ef760f844"; const truncateAddress = (address: string) => { return address.slice(0, 8) + "......" + address.slice(-7); }; const copyToClipboard = (address: string) => { navigator.clipboard.writeText(address); }; const springs = useSpring({ from: { opacity: 0 }, to: { opacity: 1 }, }); 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

{socials.map((social) => ( ))}
); }; export default FirstSection;