import { PhotoCircle } from "./PhotoCircle.tsx"; export default function AuthorCard({ author, isIdentified, }: { author: Author; isIdentified?: boolean; }) { return (

{author.first_name} {author.last_name}

{author.bio}

); } export type Author = { author_id: number; first_name: string; last_name: string; bio: string; image?: string; };