export const Link = ({ tag, href }: { tag: string; href: string }) => (
  <span class="relative">
    <span class="block">{tag}</span>
    <a href={href} class="absolute inset-0" />
  </span>
);
