Skip to content

Instantly share code, notes, and snippets.

@polluterofminds
Last active September 21, 2021 18:10
Show Gist options
  • Save polluterofminds/ac76cb9e77bbb643e8149f8154eeca88 to your computer and use it in GitHub Desktop.
Save polluterofminds/ac76cb9e77bbb643e8149f8154eeca88 to your computer and use it in GitHub Desktop.
Top-Shot-Holders index.js
import Head from 'next/head'
import Image from 'next/image'
import styles from '../styles/Home.module.css'
export default function Home() {
return (
<div className={styles.container}>
<Head>
<title>Top Shot Holders</title>
<meta name="description" content="NBA Top Shot Members-Only Community" />
<link rel="icon" href="/logo.svg" />
</Head>
<main className={styles.main}>
<div>
<h1>Welcome to the club!</h1>
<p>Sign in to verify you own an NBA Top Shot Moment.</p>
<button className={styles.button}>Sign In</button>
</div>
</main>
<footer className={styles.footer}>
<a
href="https://pinata.cloud"
target="_blank"
rel="noopener noreferrer"
>
Powered by{' '}
<span className={styles.logo}>
<Image src="/logo.svg" alt="Pinata Logo" height={40} width={40} />
</span>
</a>
</footer>
</div>
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment