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.
106 lines
2.7 KiB
106 lines
2.7 KiB
2 years ago
|
import React from "react";
|
||
|
import Button from "./Button";
|
||
|
|
||
|
type Props = {};
|
||
|
|
||
|
const menuItems = [
|
||
|
{
|
||
|
name: "Home",
|
||
|
path: "/",
|
||
|
},
|
||
|
{
|
||
|
name: "About",
|
||
|
path: "",
|
||
|
},
|
||
|
{
|
||
|
name: "Tokenomics",
|
||
|
path: "",
|
||
|
},
|
||
|
{
|
||
|
name: "Roadmap",
|
||
|
path: "",
|
||
|
},
|
||
|
];
|
||
|
|
||
|
const Header = (props: Props) => {
|
||
|
const [isScrolled, setIsScrolled] = React.useState(false);
|
||
|
|
||
|
React.useEffect(() => {
|
||
|
window.addEventListener("scroll", () => {
|
||
|
if (window.scrollY > 0) {
|
||
|
setIsScrolled(true);
|
||
|
} else {
|
||
|
setIsScrolled(false);
|
||
|
}
|
||
|
});
|
||
|
}, []);
|
||
|
|
||
|
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">
|
||
|
<div>
|
||
|
<h4 className="text-2xl transition-all duration-150 text-white uppercase font-bold">
|
||
|
Logo
|
||
|
</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-md transition-all duration-150"
|
||
|
>
|
||
|
{item.name}
|
||
|
</a>
|
||
|
</li>
|
||
|
))}
|
||
|
</ul>
|
||
|
|
||
|
<div className="flex gap-4">
|
||
|
<Button size="sm">Whitepaper</Button>
|
||
|
<Button size="sm">Audit</Button>
|
||
|
</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">
|
||
|
<div>
|
||
|
<h4 className="text-4xl transition-all duration-150 text-white uppercase font-bold">
|
||
|
Logo
|
||
|
</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">
|
||
|
<Button size="md">Whitepaper</Button>
|
||
|
<Button size="md">Audit</Button>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
)}
|
||
|
</>
|
||
|
);
|
||
|
};
|
||
|
|
||
|
export default Header;
|