refactor index nav
This commit is contained in:
@@ -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>
|
||||
);
|
Reference in New Issue
Block a user