2024-06-08 00:21:53 +02:00

12 lines
387 B
TypeScript

import styles from "./header.module.css"
export default function Header() {
return <div className={`${styles.header} pp`}>
<img src="/logo.png" width="80px" height="auto" alt="" />
<div className={styles.headertitle}>
<div style={{flexGrow:1}}>Andreas<br/>Schaafsma</div>
<div>&gt;Software Developer</div>
</div>
</div>
}