import React, { useRef, useState } from "react"; import classnames from "classnames"; import { Link, navigate } from "gatsby"; import { Popover } from "react-tiny-popover"; import { StaticImage } from "gatsby-plugin-image"; const navClasses = "hover:underline hover:bg-black/10 block p-3 text-black flex-shrink-0 whitespace-nowrap"; const ExternalLinks = () => ( ); interface NavProps { className?: string; internalLinks: { href: string; label: string; }[]; } const Nav = ({ internalLinks, className }: NavProps) => { const [linksMenu, setLinksMenu] = useState(false); const faceClicks = useRef(0); const faceLastClicked = useRef(0); return ( ); }; export default Nav;