--- import authorData from '../data/authors.json'; export interface Props { authorId: string; } const { authorId } = Astro.props; const author = authorData[authorId]; ---
by {author.name}{' '}@{author.twitter}