mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-04-27 07:58:26 -04:00
* scss isn't worth the technical/mental overhead anymore * try to translate my old Hugo pygments themes * update lockfile * consolidate .hljs classes
20 lines
505 B
TypeScript
20 lines
505 B
TypeScript
import Link from "next/link";
|
|
import Image from "next/image";
|
|
|
|
import meJpg from "../../public/static/images/me.jpg";
|
|
|
|
import styles from "./Name.module.css";
|
|
|
|
const Name = () => (
|
|
<Link href="/">
|
|
<a className={styles.title}>
|
|
<span className={styles.selfie}>
|
|
<Image src={meJpg} alt="Photo of Jake Jarvis" width={75} height={75} quality={60} layout="intrinsic" priority />
|
|
</span>
|
|
<span className={styles.name}>Jake Jarvis</span>
|
|
</a>
|
|
</Link>
|
|
);
|
|
|
|
export default Name;
|