Skip to content

Commit

Permalink
Roadmap added 📈
Browse files Browse the repository at this point in the history
  • Loading branch information
alisolanki committed Nov 10, 2021
1 parent 0108591 commit 4d91037
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 4 deletions.
Binary file added public/config/roadmap.pdf
Binary file not shown.
2 changes: 1 addition & 1 deletion public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
Learn how to configure a non-root public URL by running `npm run build`.
-->
<title>The Stripes NFT</title>
<meta name="description" content="Mint your The Stripes NFT" />
<meta name="description" content="Mint your Stripes NFT" />
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
Expand Down
4 changes: 2 additions & 2 deletions public/manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"short_name": "NCC",
"name": "Coder Clone NFT",
"short_name": "TSNFT",
"name": "The Stripes NFT",
"icons": [
{
"src": "favicon.ico",
Expand Down
30 changes: 29 additions & 1 deletion src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,9 @@ function App() {
style={{ padding: 24, backgroundColor: "var(--primary)" }}
image={CONFIG.SHOW_BACKGROUND ? "/config/images/bg.png" : null}
>
<StyledLogo alt={"logo"} src={"/config/images/logo.png"} />
<a href={CONFIG.MARKETPLACE_LINK}>
<StyledLogo alt={"logo"} src={"/config/images/logo.png"} />
</a>
<s.SpacerSmall />
<ResponsiveWrapper flex={1} style={{ padding: 24 }} test>
<s.Container flex={1} jc={"center"} ai={"center"}>
Expand Down Expand Up @@ -240,6 +242,32 @@ function App() {
{truncate(CONFIG.CONTRACT_ADDRESS, 15)}
</StyledLink>
</s.TextDescription>
<span
style={{
textAlign: "center",
}}
>
<StyledButton
onClick={(e) => {
window.open("/config/roadmap.pdf", "_blank");
}}
style={{
margin: "5px",
}}
>
Roadmap
</StyledButton>
<StyledButton
style={{
margin: "5px",
}}
onClick={(e) => {
window.open(CONFIG.MARKETPLACE_LINK, "_blank");
}}
>
{CONFIG.MARKETPLACE}
</StyledButton>
</span>
<s.SpacerSmall />
{Number(data.totalSupply) >= CONFIG.MAX_SUPPLY ? (
<>
Expand Down

0 comments on commit 4d91037

Please sign in to comment.