You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

127 lines
3.1 KiB
JavaScript

import Head from 'next/head';
import styles from '../styles/Home.module.css';
export default function Home() {
return (
<div className={styles.container}>
<Head>
<title>BlockchainGandalf</title>
<link rel="icon" href="/favicon.ico" />
</Head>
<main>
<h1 className={styles.title}>
Blockchain Gandalf
</h1>
<p className={styles.description}>
Here are links to my social media presence.
</p>
<div className={styles.grid}>
<a href="https://bsky.app/profile/blockchaingandalf.com" className={styles.card}>
<h3>On Bluesky &rarr;</h3>
<p>Short comments about maths, books, computer programming, and games.</p>
</a>
<a href="https://medium.com/@kf106" className={styles.card}>
<h3>On Medium &rarr;</h3>
<p>Longer articles on computer security, cryptography, and blockchain.</p>
</a>
<a
href="https://medium.com/@kf106"
className={styles.card}
>
<h3>On LinkedIn &rarr;</h3>
<p>Here is where I complain about LinkedIn.</p>
</a>
<a
href="https://www.youtube.com/@Thinklair"
className={styles.card}
>
<h3>On YouTube &rarr;</h3>
<p>
Videos of me walking through the Finnish forests talking about blockchain.
</p>
</a>
</div>
</main>
<footer>
<p>
Have a nice day!
</p>
</footer>
<style jsx>{`
main {
padding: 5rem 0;
flex: 1;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
footer {
width: 100%;
height: 100px;
border-top: 1px solid #eaeaea;
display: flex;
justify-content: center;
align-items: center;
}
footer img {
margin-left: 0.5rem;
}
footer a {
display: flex;
justify-content: center;
align-items: center;
text-decoration: none;
color: inherit;
}
code {
background: #fafafa;
border-radius: 5px;
padding: 0.75rem;
font-size: 1.1rem;
font-family:
Menlo,
Monaco,
Lucida Console,
Liberation Mono,
DejaVu Sans Mono,
Bitstream Vera Sans Mono,
Courier New,
monospace;
}
`}</style>
<style jsx global>{`
html,
body {
padding: 0;
margin: 0;
font-family:
-apple-system,
BlinkMacSystemFont,
Segoe UI,
Roboto,
Oxygen,
Ubuntu,
Cantarell,
Fira Sans,
Droid Sans,
Helvetica Neue,
sans-serif;
}
* {
box-sizing: border-box;
}
`}</style>
</div>
);
}