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 (