import React from "react"; import Button from "./Button"; import robotLogo from "../../assets/images/logo-robot.png"; import { BsNewspaper, BsGithub } from "react-icons/bs"; type Props = {}; const menuItems = [ { name: "Home", path: "/", id: "home", }, { name: "About", path: "", id: "about", }, { name: "Tokenomics", path: "", id: "tokenomics", }, { name: "Roadmap", path: "", id: "roadmap", }, ]; const Header = (props: Props) => { const [isScrolled, setIsScrolled] = React.useState(false); React.useEffect(() => { window.addEventListener("scroll", () => { if (window.scrollY > 0) { setIsScrolled(true); } else { setIsScrolled(false); } }); }, []); const jumpToSection = (section: string) => { console.log("section", section); const element = document.getElementById(section); if (element) { element.scrollIntoView({ behavior: "smooth" }); } }; return ( <> {isScrolled ? (

SGPT

    {menuItems.map((item) => (
  • jumpToSection(item.id)} >

    {item.name}

  • ))}
) : (

SGPT

)} ); }; export default Header;