--- import AvatarComponent from '@/components/ui/avatar' import { buttonVariants } from '@/components/ui/button' import { cn } from '@/lib/utils' import Link from '@components/Link.astro' import type { CollectionEntry } from 'astro:content' import { Github, Globe, Linkedin, Twitter } from 'lucide-react' type Props = { author: CollectionEntry<'authors'> linkDisabled?: boolean } const { author, linkDisabled = false } = Astro.props const { name, avatar, bio, pronouns, github, twitter, linkedin, website } = author.data ---

{name}

{ pronouns && ( ({pronouns}) ) }

{bio}

    { github && (
  • ) } { twitter && (
  • ) } { linkedin && (
  • ) } { website && (
  • ) }