Spaces:
Running
Running
File size: 4,130 Bytes
06a7653 02037e7 06a7653 02037e7 06a7653 91c3fe2 06a7653 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 |
'use client'
import React from "react";
import {
Navbar as MTNavbar,
Collapse,
Button,
IconButton,
Typography,
} from "@material-tailwind/react";
import {
RectangleStackIcon,
UserCircleIcon,
CommandLineIcon,
Squares2X2Icon,
XMarkIcon,
Bars3Icon,
} from "@heroicons/react/24/solid";
interface NavItemProps {
children: React.ReactNode;
href?: string;
}
function NavItem({ children, href }: NavItemProps) {
return (
<li>
<Typography placeholder={""}
as="a"
href={href || "#"}
target={href ? "_blank" : "_self"}
variant="paragraph"
className="flex items-center gap-2 font-medium"
>
{children}
</Typography>
</li>
);
}
const NAV_MENU = [
// {
// name: "Page",
// icon: RectangleStackIcon,
// },
// {
// name: "Account",
// icon: UserCircleIcon,
// },
{
name: "Add New Paper",
icon: RectangleStackIcon,
href: "https://huggingface.co/spaces/ameerazam08/research-index/blob/main/README.md",
},
];
const Navbar =()=> {
const [open, setOpen] = React.useState(false);
const [isScrolling, setIsScrolling] = React.useState(false);
const handleOpen = () => setOpen((cur:any) => !cur);
React.useEffect(() => {
window.addEventListener(
"resize",
() => window.innerWidth >= 960 && setOpen(false)
);
}, []);
React.useEffect(() => {
function handleScroll() {
if (window.scrollY > 0) {
setIsScrolling(true);
} else {
setIsScrolling(false);
}
}
window.addEventListener("scroll", handleScroll);
return () => window.removeEventListener("scroll", handleScroll);
}, []);
return (
<>
<MTNavbar
placeholder=''
shadow={false}
fullWidth
blurred={false}
color={isScrolling ? "white" : "transparent"}
className="fixed top-0 z-50 border-0"
>
<div className="container mx-auto flex items-center justify-between">
<Typography
placeholder="hello"
color={isScrolling ? "blue-gray" : "white"}
className="text-lg font-bold"
>
Research-Index
</Typography>
<ul
className={`ml-10 hidden items-center gap-6 lg:flex ${
isScrolling ? "text-gray-900" : "text-white"
}`}
>
{NAV_MENU.map(({ name, icon: Icon, href }) => (
<NavItem key={name} href={href}>
<Icon className="h-5 w-5" />
<span>{name}</span>
</NavItem>
))}
</ul>
{/* <div className="hidden items-center gap-4 lg:flex">
<Button color={isScrolling ? "gray" : "white"} variant="text">
Log in
</Button>
<a href="https://www.material-tailwind.com/blocks" target="_blank">
<Button color={isScrolling ? "gray" : "white"}>blocks</Button>
</a>
</div> */}
<IconButton placeholder={""}
variant="text"
color={isScrolling ? "gray" : "white"}
onClick={handleOpen}
className="ml-auto inline-block lg:hidden"
>
{open ? (
<XMarkIcon strokeWidth={2} className="h-6 w-6" />
) : (
<Bars3Icon strokeWidth={2} className="h-6 w-6" />
)}
</IconButton>
</div>
<Collapse open={open}>
<div className="container mx-auto mt-4 rounded-lg bg-white px-6 py-5">
<ul className="flex flex-col gap-4 text-gray-900">
{NAV_MENU.map(({ name, icon: Icon, href }) => (
<NavItem key={name} href={href}>
<Icon className="h-5 w-5" />
{name}
</NavItem>
))}
</ul>
<div className="mt-6 flex items-center gap-4">
<Button placeholder='' variant="text">Log in</Button>
<a href="https://www.materila-tailwind.com/blocks" target="_blank">
<Button placeholder='' color="gray">blocks</Button>
</a>
</div>
</div>
</Collapse>
</MTNavbar>
</>
);
}
export default Navbar;
|