astro/www/src/components/Author.astro

14 lines
305 B
Text
Raw Normal View History

---
import authorData from '../data/authors.json';
export interface Props {
authorId: string;
}
const { authorId } = Astro.props;
const author = authorData[authorId];
---
<div class="author">
<p>by {author.name}{' '}<a href={`https://twitter.com/${author.twitter}`}>@{author.twitter}</a></p>
</div>