2022-09-04 23:58:49 +02:00

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;