12 lines
387 B
TypeScript
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>>Software Developer</div>
|
|
</div>
|
|
</div>
|
|
} |