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 ? (
{item.name}
SGPT Products
{item.name}
{item.name}
Whitepaper
Audit
{item.name}
SGPT Products
{item.name}