refactor index nav

This commit is contained in:
2021-07-17 12:35:09 -07:00
parent cb7e308d12
commit 3f7f0b1fd9
3 changed files with 56 additions and 74 deletions

View File

@@ -1,22 +0,0 @@
import * as React from "react";
import classnames from "classnames";
export const HeroA = ({
href,
children,
className,
isClient,
...linkProps
}) => (
<a
className={classnames(
"mx-3 ",
isClient && "text-muted-light hover:text-vibrant-light",
className
)}
href={href}
{...linkProps}
>
{children}
</a>
);