Skip to content

Commit 76f7876

Browse files
committed
update frontend
1 parent ed0b53d commit 76f7876

File tree

3 files changed

+19
-15
lines changed

3 files changed

+19
-15
lines changed

package-lock.json

Lines changed: 6 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/views/components/Carousel.vue

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@
55
<div class=" w-slide" v-if="slideIndex==0">
66
<div class="container-2 w-container">
77
<div class="div-block-10"><img src="@/assets/images/venn-diagram.svg" width="300" alt="" class="venn-diagram-image">
8-
<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>
8+
<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>
99
</div>
1010
</div>
1111
</div>
1212

13-
<div class=" w-slide" v-if="slideIndex==1">
13+
<div class=" w-slide" v-if="slideIndex==3">
1414
<div class="w-container">
15-
<h2 class="slider-statement">0xBitcoin stands on the shoulders of giants, and tries to reach further</h2>
15+
<h2 class="slider-statement">0xBitcoin builds on the shoulders of giants and reaches further</h2>
1616
<div>
1717
<div class="w-row">
1818
<div class="w-col w-col-4 w-col-small-4">
@@ -48,21 +48,21 @@
4848
</div>
4949
</div>
5050

51-
<div class=" w-slide" v-if="slideIndex==2">
51+
<div class=" w-slide" v-if="slideIndex==1">
5252
<div class="w-container">
5353
<h1 class="slider-statement">0xBitcoin&#x27;s principles matter in today&#x27;s world</h1>
5454
<div class="w-row">
5555
<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">
5656
<h2 class="carousel values">Decentralized</h2>
57-
<p class="slider-paragraph">Decentralization aligns network participants together toward a common goal. It encourages a robust infrastructure and resists censorship.</p>
57+
<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>
5858
</div>
5959
<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">
6060
<h2 class="carousel values">Contract Compatible</h2>
61-
<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>
61+
<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>
6262
</div>
6363
<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">
64-
<h2 class="carousel values">Finite Coin Cap</h2>
65-
<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>
64+
<h2 class="carousel values">Neutral Money</h2>
65+
<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>
6666
</div>
6767
</div>
6868
</div>
@@ -92,13 +92,13 @@ export default {
9292
}
9393
},
9494
created(){
95-
setInterval(this.incrementSlideIndex,8000);
95+
setInterval(this.incrementSlideIndex,24000);
9696
},
9797
methods: {
9898
incrementSlideIndex()
9999
{
100100
this.slideIndex++;
101-
if(this.slideIndex>2) this.slideIndex=0;
101+
if(this.slideIndex>1) this.slideIndex=0;
102102
}
103103
}
104104
}

src/views/config/UpperNav.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ const config={
55
{"title":"0xBitcoin API Wiki","url":"https://docs.0xbitcoin.org"},
66
{"title":"White Paper","url":"https://github.com/0xbitcoin/white-paper"},
77
{"title":"Smart Contract","url":"https://etherscan.io/address/0xb6ed7644c69416d67b522e20bc294a9a9b405b31#code"},
8-
{"title":"0xBTC Explorer","url":"https://0xbtc.info/"}
8+
{"title":"0xBTC Explorer","url":"https://0xbtc.info/"},
9+
{"title":"Dune Analytics","url":"https://duneanalytics.com/infernaltoast/0xBTC"}
910
]},
1011
{"title":"EXCHANGES","rows":[
1112
{"title":"Uniswap","url":"https://app.uniswap.org/#/swap?outputCurrency=0xb6ed7644c69416d67b522e20bc294a9a9b405b31"},
@@ -29,7 +30,7 @@ const config={
2930
{"title":"Bank of 0xBTC","url":"https://bank.0xbtc.io"},
3031
{"title":"0xBitcoin Memes","url":"https://opensea.io/collection/0xbitcoinmemes"},
3132
{"title":"Farm.MineableTokens","url":"https://farm.mineabletokens.com"},
32-
{"title":"Tipjar","url":"https://tipjar.0xbtc.io/"}
33+
{"title":"Digital Toast","url":"https://digitaltoast.0xbtc.io/"}
3334
]}
3435
]
3536

0 commit comments

Comments
 (0)