import clsx from 'clsx' import { Anchor } from 'components/Anchor' import { useRouter } from 'next/router' export interface LinkTabProps { title: string description: string href: string isActive?: boolean } export const LinkTab = (props: LinkTabProps) => { const { title, description, href, isActive } = props // get contract address from the router const router = useRouter() const { contractAddress } = router.query return (

{title}

{description}
) }