import { CogIcon, MagnifyingGlassIcon, UserIcon, } from "@heroicons/react/20/solid"; import { GlobeAltIcon } from "@heroicons/react/24/outline"; import Button from "./Button"; interface ButtonProps { text: string; icon?: JSX.Element; href?: string; children?: React.ReactNode; } function NavbarButton({ text, icon, href, children }: ButtonProps) { return (
<> {icon}

{text}

{children && (
{children}
)}
); } export default function Navbar() { return ( <>
}>

No friends, add someone!