import React, { useEffect } from "react"; import { useTranslation } from "react-i18next"; import Button from "./Button"; import robotLogo from "../../assets/images/robot-logo.png"; import { BsNewspaper, BsGithub } from "react-icons/bs"; import Whitepaper from "../../assets/Whitepaper.pdf"; import { MdLanguage } from "react-icons/md"; import { locales, resources } from "../../i18n/i18n"; import { HashLink } from "react-router-hash-link"; import { Link } from "react-router-dom"; type Props = {}; const menuItems = [ { name: "Home", path: "/", id: "home", }, { name: "About", path: "/", id: "about", }, { name: "Roadmap", path: "/", id: "roadmap", }, { name: "Tokenomics", path: "/", id: "tokenomics", }, ]; const menuSGPTProducts = [ { name: "SGPT for Healthcare", path: "healthcare", }, ]; const Header = (props: Props) => { const [isScrolled, setIsScrolled] = React.useState(false); const [isOpenMenu, setIsOpenMenu] = React.useState(false); const [isMobile, setIsMobile] = React.useState(false); const { i18n } = useTranslation(); const currentLanguage = locales[i18n.language as keyof typeof locales]; const languages = Object.keys(resources); React.useEffect(() => { // check is mobile if (window.innerWidth <= 1024) { setIsMobile(true); } else { setIsMobile(false); } console.log(window.innerWidth); if (window.innerWidth <= 1024) { setIsScrolled(true); } else { window.addEventListener("scroll", () => { if (window.scrollY > 0) { setIsScrolled(true); } else { setIsScrolled(false); } }); } }, [window.innerWidth]); const jumpToSection = (section: string) => { const element = document.getElementById(section); if (element) { element.scrollIntoView({ behavior: "smooth" }); setIsOpenMenu(!isOpenMenu); } }; const backToHome = () => { const element = document.getElementById("home"); if (element) { element.scrollIntoView({ behavior: "smooth" }); } }; const openLocalPdf = () => { const pdf = Whitepaper; window.open(pdf); }; const changeLanguage = (lng: string) => { i18n.changeLanguage(lng); }; return ( <> {isScrolled ? (
backToHome()} >

SGPT

{ // Mobile menu isMobile ? (
setIsOpenMenu(!isOpenMenu)} >
) : ( <>
    {menuItems.map((item) => (
  • jumpToSection(item.id)} >

    {item.name}

  • ))}
  • SGPT Products

      {menuSGPTProducts.map((item) => (
    • {item.name}

    • ))}
  • {currentLanguage}
      {languages.map((lng, index) => ( <>
    • changeLanguage(lng)} > {locales[lng as keyof typeof locales]}
    • ))}
) } { // Mobile menu isMobile && isOpenMenu ? (
    {menuItems.map((item, index) => (
  • jumpToSection(item.id)} >

    {item.name}

  • ))}
  • ( openLocalPdf(), setIsOpenMenu(!isOpenMenu) )} >

    Whitepaper

  • setIsOpenMenu(!isOpenMenu)} >

    Audit

  • SGPT Products
    {/*
    */}
      {menuSGPTProducts.map((item, index) => (
    • setIsOpenMenu(!isOpenMenu)} > {item.name}
    • ))}
    {currentLanguage}
    {/*
    */}
      {languages.map((lng, index) => ( <>
    • changeLanguage(lng)} > {locales[lng as keyof typeof locales]}
    • ))}
) : null }
) : (

SGPT

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

    {item.name}

  • ))}
  • SGPT Products

      {menuSGPTProducts.map((item) => (
    • {item.name}

    • ))}
  • {currentLanguage}
      {languages.map((lng, index) => ( <>
    • changeLanguage(lng)} > {locales[lng as keyof typeof locales]}
    • ))}
)} ); }; export default Header;