import type { BlogAuthor } from '@nx/nx-dev/data-access-documents/node-only'; import { GithubIcon, XIcon } from '@nx/nx-dev/ui-common'; import Image from 'next/image'; interface AuthorDetailProps { author: BlogAuthor; } export default function AuthorDetail({ author }: AuthorDetailProps) { return (
); }