Skip to content

Commit

Permalink
iggy social link, github link, punk angel NFT prices changed
Browse files Browse the repository at this point in the history
  • Loading branch information
tempe-techie committed Dec 28, 2023
1 parent 015b877 commit acad18d
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 25 deletions.
16 changes: 6 additions & 10 deletions src/components/Footer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,6 @@
<span> | </span>

<router-link to="/how">How it works</router-link>

<span> | </span>

<router-link to="/partners/l2dao">L2DAO</router-link>

<!--
Expand All @@ -37,6 +33,10 @@
<span> | </span>

<a target="_blank" href="https://github.com/orgs/punk-domains-2/discussions/1">Contribute</a>

<span> | </span>

<a target="_blank" href="https://iggy.social">Iggy Social</a>

</div>

Expand All @@ -46,19 +46,15 @@

<a class="icons" target="_blank" href="https://gitlab.com/punk-domains"><i class="bi bi-git"></i></a>

<a class="icons" target="_blank" href="https://github.com/punk-domains-2"><i class="bi bi-github"></i></a>

<a class="icons" target="_blank" href="https://discord.gg/8dSrwrAQeu"><i class="bi bi-discord"></i></a>

<a class="icons" target="_blank" href="https://twitter.com/PunkDomains"><i class="bi bi-twitter"></i></a>

<a class="icons" href="https://blog.punk.domains" target="_blank"><i class="bi bi-pencil-square"></i></a>

</div>

<div class="container-fluid text-center">
<a href="https://alchemy.com/?r=DA1NzIxNDk3NDA4N" target="_blank">
<img id="badge-button" style="height:43px" src="https://static.alchemyapi.io/images/marketing/badge.png" alt="Alchemy Supercharged" />
</a>
</div>
</template>

<script>
Expand Down
10 changes: 6 additions & 4 deletions src/components/Navbar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,6 @@
<router-link tag="button" class="btn btn-primary" to="/buy-tld">Buy a TLD</router-link>
</div>
-->

<div v-if="isActivated" class="btn-group mx-2 navbar-menu-btn">
<router-link tag="button" class="btn btn-primary" to="/send-tokens">Send Tokens</router-link>
</div>

<div v-if="isActivated" class="btn-group mx-2 navbar-menu-btn">
<button class="btn btn-primary dropdown-toggle" type="button" id="dropdownMenuButton1" data-bs-toggle="dropdown" aria-expanded="false">
Expand All @@ -76,13 +72,19 @@
<router-link tag="li" class="dropdown-item" to="/">Buy domain</router-link>
<router-link tag="li" class="dropdown-item" to="/search-domain">Search domain</router-link>
<router-link tag="li" class="dropdown-item" to="/send-tokens">Send tokens</router-link>
<router-link tag="li" class="dropdown-item" to="/punkangel">Mint .punkangel</router-link>
<li class="dropdown-item" @click="openUrl('https://blog.punk.domains')">Blog</li>
<router-link tag="li" class="dropdown-item" to="/browser">Browser extension</router-link>
<li class="dropdown-item" @click="openUrl('https://docs.punk.domains')">Docs</li>
<li class="dropdown-item" @click="openUrl('https://github.com/orgs/punk-domains-2/discussions/1')">Contribute</li>
<li class="dropdown-item" @click="logout">Disconnect</li>
</ul>
</div>

<div v-if="isActivated" class="btn-group mx-2 navbar-menu-btn">
<router-link tag="button" class="btn btn-primary" to="/send-tokens">Send Tokens</router-link>
</div>

</div>

<button v-if="!isActivated" class="btn btn-primary" @click="open">Connect wallet</button>
Expand Down
22 changes: 11 additions & 11 deletions src/views/nft/PunkAngelMint.vue
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<div class="row mt-5">
<div class="col-md-8 offset-md-2">
<p>
Punk Angel is a new kind of web3 domains, which gives you both a unique domain name and also a generative art
Punk Angel is a new kind of web3 domain, which gives you both a unique domain name and also a generative art
profile picture (all-in-one).
</p>
</div>
Expand Down Expand Up @@ -122,15 +122,15 @@
</tr>
<tr>
<td>3 characters</td>
<td>$2999</td>
<td>$999</td>
</tr>
<tr>
<td>4 characters</td>
<td>$1999</td>
<td>$199</td>
</tr>
<tr>
<td>5+ characters</td>
<td>$999</td>
<td>$69</td>
</tr>
</tbody>
</table>
Expand All @@ -144,10 +144,10 @@
<h4 class="mt-4">What is the max/total supply?</h4>

<p class="mt-3">
Max/total supply is between 44 and 425 domains. It depends on the prices that domains are bought at.
If all domains are bought at $999, the max supply is 425 domains. If some domains are bought at a
Max/total supply is between 65 and 5822 domains. It depends on the prices that domains are bought at.
If all domains are bought at $69, the max supply is 5822 domains. If some domains are bought at a
higher price, the total supply will be lower. If all domains are bought at $9999, the total supply
is capped at 44 domains.
is capped at 65 domains.
</p>

<h4 class="mt-5">Can I buy/sell these PFP domains on marketplaces?</h4>
Expand Down Expand Up @@ -230,7 +230,7 @@ export default {
data() {
return {
canMint: true,
chosenAllowance: 999,
chosenAllowance: 69,
chosenDomainName: null,
domainPrice: null,
idMainnet: 42161,
Expand Down Expand Up @@ -279,13 +279,13 @@ export default {
} else if (this.chosenDomainName.length === 2) {
return 4999;
} else if (this.chosenDomainName.length === 3) {
return 2999;
return 999;
} else if (this.chosenDomainName.length === 4) {
return 1999;
return 199;
}
}
return 999;
return 69;
},
domainLowerCase() {
Expand Down

0 comments on commit acad18d

Please sign in to comment.