Skip to content

Commit

Permalink
update frontend
Browse files Browse the repository at this point in the history
  • Loading branch information
ethereumdegen committed Apr 27, 2021
1 parent ed0b53d commit 76f7876
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 15 deletions.
9 changes: 6 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 10 additions & 10 deletions src/views/components/Carousel.vue
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@
<div class=" w-slide" v-if="slideIndex==0">
<div class="container-2 w-container">
<div class="div-block-10"><img src="@/assets/images/venn-diagram.svg" width="300" alt="" class="venn-diagram-image">
<p class="paragraph-3"><strong class="bold-text-9">0xBTC was the first token created to fill the need for an everyday cryptocurrency that is integratable, fast, and made to last.</strong></p>
<p class="paragraph-3"><strong class="bold-text-9">0xBTC is a native & trustless ERC20 cryptocurrency without dependencies. It is extensible, immutable, and designed to stand the test of time.</strong></p>
</div>
</div>
</div>

<div class=" w-slide" v-if="slideIndex==1">
<div class=" w-slide" v-if="slideIndex==3">
<div class="w-container">
<h2 class="slider-statement">0xBitcoin stands on the shoulders of giants, and tries to reach further</h2>
<h2 class="slider-statement">0xBitcoin builds on the shoulders of giants and reaches further</h2>
<div>
<div class="w-row">
<div class="w-col w-col-4 w-col-small-4">
Expand Down Expand Up @@ -48,21 +48,21 @@
</div>
</div>

<div class=" w-slide" v-if="slideIndex==2">
<div class=" w-slide" v-if="slideIndex==1">
<div class="w-container">
<h1 class="slider-statement">0xBitcoin&#x27;s principles matter in today&#x27;s world</h1>
<div class="w-row">
<div class="column-9 w-col w-col-4 w-col-small-small-stack"><img src="@/assets/images/decentralized.svg" width="70" height="70" alt="decentralized by Javad from the Noun Project" class="principle-icon">
<h2 class="carousel values">Decentralized</h2>
<p class="slider-paragraph">Decentralization aligns network participants together toward a common goal. It encourages a robust infrastructure and resists censorship.</p>
<p class="slider-paragraph">Decentralization aligns network participants together toward a common goal. It encourages a robust infrastructure that resists censorship, dependencies, and central control.</p>
</div>
<div class="column-10 w-col w-col-4 w-col-small-small-stack"><img src="@/assets/images/smart-contract.svg" width="70" height="70" alt="smart contract by James Fok from the Noun Project" class="principle-icon">
<h2 class="carousel values">Contract Compatible</h2>
<p class="slider-paragraph">DApps are here, and they will only become more prominent. Smart Contract compatibility means that 0xBTC can be used quickly and easily around the world.</p>
<p class="slider-paragraph">DApps are here, and they will only become more prominent. Smart Contract compatibility means that 0xBTC is future proofed and will always work with the most powerful decentralized applications.</p>
</div>
<div class="column-11 w-col w-col-4 w-col-small-small-stack"><img src="@/assets/images/coins.svg" width="70" height="70" alt="Coins by Viktor Fedyuk (Tim P) from the Noun Project" class="principle-icon">
<h2 class="carousel values">Finite Coin Cap</h2>
<p class="slider-paragraph">When governments, groups and companies can create currency on a whim, they whittle away the value of your money and leave you poorer for it. A coin cap is fundamentally a statement of respect for you, the money holder. Only the market will ever determine what your coin is worth. </p>
<h2 class="carousel values">Neutral Money</h2>
<p class="slider-paragraph">When ICO groups or companies create currency on a whim, it is often manipulated and dependent on the success of a centralized entity or service. 0xBTC is mathematically verifiably neutral. It is a commodity forged from energy by the broad community in a neutral manner. </p>
</div>
</div>
</div>
Expand Down Expand Up @@ -92,13 +92,13 @@ export default {
}
},
created(){
setInterval(this.incrementSlideIndex,8000);
setInterval(this.incrementSlideIndex,24000);
},
methods: {
incrementSlideIndex()
{
this.slideIndex++;
if(this.slideIndex>2) this.slideIndex=0;
if(this.slideIndex>1) this.slideIndex=0;
}
}
}
Expand Down
5 changes: 3 additions & 2 deletions src/views/config/UpperNav.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ const config={
{"title":"0xBitcoin API Wiki","url":"https://docs.0xbitcoin.org"},
{"title":"White Paper","url":"https://github.com/0xbitcoin/white-paper"},
{"title":"Smart Contract","url":"https://etherscan.io/address/0xb6ed7644c69416d67b522e20bc294a9a9b405b31#code"},
{"title":"0xBTC Explorer","url":"https://0xbtc.info/"}
{"title":"0xBTC Explorer","url":"https://0xbtc.info/"},
{"title":"Dune Analytics","url":"https://duneanalytics.com/infernaltoast/0xBTC"}
]},
{"title":"EXCHANGES","rows":[
{"title":"Uniswap","url":"https://app.uniswap.org/#/swap?outputCurrency=0xb6ed7644c69416d67b522e20bc294a9a9b405b31"},
Expand All @@ -29,7 +30,7 @@ const config={
{"title":"Bank of 0xBTC","url":"https://bank.0xbtc.io"},
{"title":"0xBitcoin Memes","url":"https://opensea.io/collection/0xbitcoinmemes"},
{"title":"Farm.MineableTokens","url":"https://farm.mineabletokens.com"},
{"title":"Tipjar","url":"https://tipjar.0xbtc.io/"}
{"title":"Digital Toast","url":"https://digitaltoast.0xbtc.io/"}
]}
]

Expand Down

0 comments on commit 76f7876

Please sign in to comment.