1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-09-16 20:05:31 -04:00

lint all the things

This commit is contained in:
2022-01-03 20:13:27 -05:00
parent 2c33f564e2
commit 78d17c6337
8 changed files with 7 additions and 179 deletions

View File

@@ -1,7 +1,7 @@
import Link from "next/link";
import Image from "next/image";
import selfiePic from "../../public/static/images/me.jpg";
import meJpg from "../../public/static/images/me.jpg";
import styles from "./Name.module.scss";
@@ -9,15 +9,7 @@ const Name = () => (
<Link href="/">
<a className={styles.title}>
<span className={styles.selfie}>
<Image
src={selfiePic}
alt="Photo of Jake Jarvis"
width={75}
height={75}
quality={60}
layout="intrinsic"
priority
/>
<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>