mirror of
https://github.com/mastermindzh/rickvanlieshout.com
synced 2025-04-05 14:53:41 +02:00
28 lines
680 B
JavaScript
28 lines
680 B
JavaScript
// @flow
|
|
import React from 'react';
|
|
import { getContactHref } from '../../../utils';
|
|
import styles from './Author.module.scss';
|
|
import { useSiteMetadata } from '../../../hooks';
|
|
|
|
const Author = () => {
|
|
const { author } = useSiteMetadata();
|
|
|
|
return (
|
|
<div className={styles['author']}>
|
|
<p className={styles['author__bio']}>
|
|
{author.bio}
|
|
<a
|
|
className={styles['author__bio-twitter']}
|
|
href={getContactHref('twitter', author.contacts.twitter)}
|
|
rel="noopener noreferrer"
|
|
target="_blank"
|
|
>
|
|
<strong>{author.name}</strong> on Twitter
|
|
</a>
|
|
</p>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default Author;
|