Beta 2, quite a bit of changes

This commit is contained in:
Red Duck 2022-02-15 19:08:29 +02:00
parent c81e7b793f
commit 8f8260d383
43 changed files with 702 additions and 345 deletions

9
components/author.js Normal file
View file

@ -0,0 +1,9 @@
import styles from '../styles/Author.module.css';
export default function Author(props) {
return (
<div className={styles.Author}>
Author: <span style={{color: '#777'}}>{props.children}</span>
</div>
)
}