Created
April 5, 2022 13:38
-
-
Save polluterofminds/4e1a21a5708a526d5b8d30b8cbd6b0b5 to your computer and use it in GitHub Desktop.
Members Only Step One
This file contains hidden or 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"; | |
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