Skip to content

Commit

Permalink
Merge branch 'feature/tia-page' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
Tamás committed Aug 18, 2023
2 parents 8259d18 + 56fef1a commit 61c1554
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
8 changes: 4 additions & 4 deletions src/datas/what-is-tia/wallets.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export const wallets = {
device: ["Mobile", "Desktop", "Staking"],
image: "what-is-tia/kepler-icon.jpg",
backdropClass: "opacity-50",
url: "",
url: "https://www.keplr.app/",
type: "external",
},
{
Expand All @@ -17,7 +17,7 @@ export const wallets = {
device: ["Mobile", "Desktop", "Staking"],
image: "what-is-tia/cosmostation-icon.jpg",
backdropClass: "opacity-100",
url: "",
url: "https://cosmostation.io/products/cosmostation_extension",
type: "external",
},
{
Expand All @@ -26,7 +26,7 @@ export const wallets = {
device: ["Mobile", "Desktop", "Staking"],
image: "what-is-tia/leap-icon.jpg",
backdropClass: "opacity-100",
url: "",
url: "https://www.leapwallet.io/",
type: "external",
},
{
Expand All @@ -35,7 +35,7 @@ export const wallets = {
device: ["Mobile", "Desktop", "Staking"],
image: "what-is-tia/ledger-icon.jpg",
backdropClass: "opacity-50",
url: "",
url: "https://www.ledger.com/",
type: "external",
},
],
Expand Down
14 changes: 7 additions & 7 deletions src/pages/what-is-tia.js
Original file line number Diff line number Diff line change
Expand Up @@ -116,8 +116,8 @@ const WhatIsTIA = () => {

<div className="link-list">
<div className='link-wrapper me-4'>
<a className='link' href='https://docs.celestia.org/'>
View Documentation
<a className='link' href='https://docs.celestia.org/' target='_blank'>
Learn more about staking and custody
<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none'>
<path
stroke='#7B2BF9'
Expand All @@ -136,7 +136,7 @@ const WhatIsTIA = () => {
</a>
</div>
<div className='link-wrapper'>
<a className='link' href='https://docs.celestia.org/'>
<a className='link' href='https://docs.celestia.org/' target="_blank">
View Documentation
<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none'>
<path
Expand Down Expand Up @@ -206,7 +206,7 @@ const WhatIsTIA = () => {
</div>
</div>
<div className='link-wrapper'>
<a className='link' href={item.url}>
<a className='link' href={item.url} target='_blank'>
Download
<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none'>
<path
Expand Down Expand Up @@ -247,8 +247,8 @@ const WhatIsTIA = () => {
<div className='link-card'>
<div className='link-title'>Create wallet with celestia-app</div>
<div className='link-wrapper'>
<a className='link' href='/'>
CTA
<a className='link' href='https://docs.celestia.org/developers/celestia-app-wallet/' target='_blank'>
Create wallet
<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none'>
<path
stroke='#7B2BF9'
Expand Down Expand Up @@ -277,4 +277,4 @@ const WhatIsTIA = () => {
);
};

export default WhatIsTIA;
export default WhatIsTIA;

0 comments on commit 61c1554

Please sign in to comment.