import Image from 'next/image'; export function BlogAuthors({ authors }: { authors: string[] }): JSX.Element { return (
{authors.map((author, index) => ( {author} ))}
); }