You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
SGPT/src/shared/components/Header.tsx

155 lines
4.4 KiB

2 years ago
import React from "react";
import Button from "./Button";
2 years ago
import robotLogo from "../../assets/images/logo-robot.png";
import { BsNewspaper, BsGithub } from "react-icons/bs";
2 years ago
type Props = {};
const menuItems = [
{
name: "Home",
path: "/",
2 years ago
id: "home",
2 years ago
},
{
name: "About",
path: "",
2 years ago
id: "about",
2 years ago
},
{
name: "Tokenomics",
path: "",
2 years ago
id: "tokenomics",
2 years ago
},
{
name: "Roadmap",
path: "",
2 years ago
id: "roadmap",
2 years ago
},
];
const Header = (props: Props) => {
const [isScrolled, setIsScrolled] = React.useState(false);
React.useEffect(() => {
window.addEventListener("scroll", () => {
if (window.scrollY > 0) {
setIsScrolled(true);
} else {
setIsScrolled(false);
}
});
}, []);
2 years ago
const jumpToSection = (section: string) => {
console.log("section", section);
const element = document.getElementById(section);
if (element) {
element.scrollIntoView({ behavior: "smooth" });
}
};
2 years ago
return (
<>
{isScrolled ? (
<div className="fixed w-full z-30 p-1 transition-all duration-150 bg-gray-800">
<div className="container mx-auto flex justify-between items-center">
2 years ago
<div className="flex gap-2 items-center">
<div className="bg-white rounded-full overflow-hidden p-1">
<img
src={robotLogo}
className="w-6 transition-all duration-150 rounded-full"
alt=""
/>
</div>
<h4 className="text-xl transition-all duration-150 text-white uppercase font-bold">
SGPT
2 years ago
</h4>
</div>
<div className="flex gap-10 items-center">
<ul className="flex gap-10">
{menuItems.map((item) => (
2 years ago
<li
className="inline-block"
key={item.path}
onClick={() => jumpToSection(item.id)}
>
<p className="text-white text-md transition-all duration-150">
2 years ago
{item.name}
2 years ago
</p>
2 years ago
</li>
))}
</ul>
<div className="flex gap-4">
2 years ago
<Button size="sm">
<div className="flex items-center gap-2">
<BsNewspaper />
Whitepaper
</div>
</Button>
<Button size="sm">
<div className="flex items-center gap-2">
<BsGithub />
Audit
</div>
</Button>
2 years ago
</div>
</div>
</div>
</div>
) : (
<div className="fixed z-30 w-full p-5 transition-all duration-150">
<div className="container mx-auto flex justify-between items-center">
2 years ago
<div className="flex gap-2 items-center">
<div className="bg-white rounded-full overflow-hidden p-1">
<img
src={robotLogo}
className="w-10 transition-all duration-150 rounded-full"
alt=""
/>
</div>
2 years ago
<h4 className="text-4xl transition-all duration-150 text-white uppercase font-bold">
2 years ago
SGPT
2 years ago
</h4>
</div>
<div className="flex gap-10 items-center">
<ul className="flex gap-10">
{menuItems.map((item) => (
<li className="inline-block" key={item.path}>
<a
href="#"
className="text-white text-lg transition-all duration-150"
>
{item.name}
</a>
</li>
))}
</ul>
<div className="flex gap-4">
2 years ago
<Button size="md">
<div className="flex items-center gap-2">
<BsNewspaper />
Whitepaper
</div>
</Button>
<Button size="md">
<div className="flex items-center gap-2">
<BsGithub />
Audit
</div>
</Button>
2 years ago
</div>
</div>
</div>
</div>
)}
</>
);
};
export default Header;