Last active
January 11, 2021 16:07
-
-
Save polluterofminds/b13a0d8f84bdcad6f706ae452eadd2b1 to your computer and use it in GitHub Desktop.
Pinnie For Your Thought Entry File
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Head from "next/head"; | |
import Link from "next/link"; | |
import Image from "next/image"; | |
export default function Home() { | |
return ( | |
<div> | |
<Head> | |
<title>Pinnie For Your Thoughts</title> | |
<link rel="icon" href="/pinnie.svg" /> | |
</Head> | |
<div style={styles.header}> | |
<Link href="login">Login</Link> | |
</div> | |
<div style={styles.flex}> | |
<Image | |
width="80px" | |
height="80px" | |
src="/pinnie.svg" | |
alt="Pinnie the pinata" | |
/> | |
<h1>Pinnie For Your Thoughts</h1> | |
<p>Where Web3 meets Web2.</p> | |
<div style={styles.flexRow}> | |
<form onSubmit={() => console.log("subscribing")}> | |
<input style={styles.input} type="email" placeholder="Type your email" /> | |
<button type="submit" style={styles.btn}>Subscribe</button> | |
</form> | |
</div> | |
<div style={styles.sample}> | |
<Link href="sample">Read a Sample First</Link> | |
</div> | |
</div> | |
</div> | |
); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment