Skip to content

Instantly share code, notes, and snippets.

@polluterofminds
Created April 5, 2022 13:38
Show Gist options
  • Save polluterofminds/4e1a21a5708a526d5b8d30b8cbd6b0b5 to your computer and use it in GitHub Desktop.
Save polluterofminds/4e1a21a5708a526d5b8d30b8cbd6b0b5 to your computer and use it in GitHub Desktop.
Members Only Step One
import Head from "next/head";
export default function Home() {
return (
<div>
<Head>
<title>Members Only Photos</title>
<meta name="description" content="An NFT Powered Members Only Photo App" />
<link rel="icon" href="/favicon.ico" />
</Head>
<div>
<h1>Members Only</h1>
<p>You have to own [Insert NFT name] to access the gallery.</p>
<button>Sign In With Ethereum</button>
</div>
</div>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment