mirror of
https://github.com/mastermindzh/rickvanlieshout.com
synced 2025-04-06 23:33:49 +02:00
22 lines
418 B
TypeScript
22 lines
418 B
TypeScript
import React from "react";
|
|
|
|
import { useSiteMetadata } from "@/hooks";
|
|
|
|
import * as styles from "./Author.module.scss";
|
|
|
|
const Author = () => {
|
|
const { author } = useSiteMetadata();
|
|
|
|
return (
|
|
<div className={styles.author}>
|
|
<p className={styles.bio}>
|
|
Written by: <a href ="/pages/about">
|
|
<strong>{author.name}</strong>
|
|
</a>
|
|
</p>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default Author;
|