import { cn } from '@workspace/ui/lib/utils'; interface DocsAuthorProps { name: string; url?: string; } const nameClassName = 'text-foreground underline underline-offset-2 decoration-blue-500 font-medium'; export const DocsAuthor = ({ name, url }: DocsAuthorProps) => { return ( Made by{' '} {url ? ( {name} ) : ( {name} )} ); };