import Image from "next/image"; import Author from "../types/author"; type Props = { author: Author; }; export default function Avatar({ author }: Props) { const name: string = author?.name; return (
{name}
{name}
); }