import React from "react"; import classnames from "classnames"; import { Link } from "gatsby"; const getNavClasses = (isClient) => classnames( "hover:underline mx-2 md:mx-3", isClient ? "text-vibrant-light" : "text-gray-200" ); const Nav = ({ isClient, internalLinks, className }) => ( ); export default Nav;