Luke Granger-Brown
3d92896314
This removes the trailing $$ from the QR codes generated by EE. Gah, why do they still do this.
35 lines
1.1 KiB
JavaScript
35 lines
1.1 KiB
JavaScript
import Head from 'next/head'
|
|
import Link from 'next/link'
|
|
import styles from '../styles/Post.module.scss'
|
|
import HeaderNav from '../lib/HeaderNav'
|
|
import HeroImage from '../lib/HeroImage'
|
|
|
|
export default function Toolbox() {
|
|
return (
|
|
<div className={styles.container}>
|
|
<HeaderNav />
|
|
<HeroImage image="https://images.unsplash.com/photo-1465659504169-09fe8930ccae" credit={{ url: "https://images.unsplash.com/photo-1465659504169-09fe8930ccae", text: "kychan" }} withGradient="top-blue">
|
|
Toolbox
|
|
</HeroImage>
|
|
<Head>
|
|
<title>Toolbox | Luke Granger-Brown</title>
|
|
<link rel="icon" href="/favicon.ico" />
|
|
</Head>
|
|
|
|
<main className={styles.main}>
|
|
<div className={styles.post}>
|
|
A collection of tools. Maybe some will be useful.
|
|
|
|
<ul>
|
|
<li>
|
|
<Link href="/tools/net"><a>Networking Tools</a></Link>
|
|
</li>
|
|
<li>
|
|
<Link href="/tools/ee-qrcode"><a>EE QRCode Mangler</a></Link>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</main>
|
|
</div>
|
|
)
|
|
}
|