import { Avatar } from "./Avatar"; import cn from "classnames"; import HYDROROLL_TEAM from "../content/team"; import type { Author } from "../content/team"; export function Authors({ authors }: { authors: Array }) { const validAuthors = authors.filter((author) => HYDROROLL_TEAM[author]); return (
4 && "max-w-3xl" )} > {validAuthors.map((username) => ( ))}
); }