Skip to content

Commit

Permalink
Merge pull request #124 from mstable/fix/links
Browse files Browse the repository at this point in the history
fix: apps links
  • Loading branch information
dimlbc authored Dec 14, 2023
2 parents 7c3e48c + 5006a3f commit e9cd99d
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions src/components/home/BigStats.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -125,11 +125,11 @@ export const BigStats: FC = () => {

return (
<StatsSection>
<BigStatLink href="https://mstable.app/#/musd/stats">
<BigStatLink href="https://app.mstable.org/#/musd/stats">
{!loading && volumeEstimate ? <h3>${volumeEstimate.toString().substr(0, 1)}b+</h3> : <Skeleton />}
<p>All Time Volume</p>
</BigStatLink>
<BigStatLink href="https://staking.mstable.app/">
<BigStatLink href="https://staking.mstable.org/">
{!loading && value?.mta?.totalStakers ? <h3>{value.mta.totalStakers}</h3> : <Skeleton />}
<p>Active Governors</p>
</BigStatLink>
Expand Down
2 changes: 1 addition & 1 deletion src/components/layout/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ export const Footer: FC = () => {
</div>
<div>
<Header>Governance</Header>
<ExternalLinkChevron href="https://staking.mstable.app">Governance App</ExternalLinkChevron>
<ExternalLinkChevron href="https://staking.mstable.org">Governance App</ExternalLinkChevron>
<ExternalLinkChevron href="https://forum.mstable.org">Forum</ExternalLinkChevron>
<ExternalLinkChevron href="https://snapshot.page/#/mstable">Vote</ExternalLinkChevron>
</div>
Expand Down
4 changes: 2 additions & 2 deletions src/pages/GovernanceTokenMeta.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ export const GovernanceTokenMeta: FC = () => {
</p>
</div>
<Links>
<LinkButton highlight href="https://staking.mstable.app">
<LinkButton highlight href="https://staking.mstable.org">
Stake MTA
</LinkButton>
<LinkButton highlight href="https://medium.com/mstable/staking-migration-guide-8f0ec7e0b267">
Expand All @@ -175,7 +175,7 @@ export const GovernanceTokenMeta: FC = () => {
</p>
</div>
<Links>
<LinkButton highlight href="https://mstable.app/">
<LinkButton highlight href="https://mstable.org/">
Start earning MTA
</LinkButton>
</Links>
Expand Down
6 changes: 3 additions & 3 deletions src/pages/Save.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ export const Save: FC = () => {
</p>
</div>
<Links>
<LinkButton highlight href="https://mstable.app/#/musd/save/">
<LinkButton highlight href="https://app.mstable.org/#/musd/save/">
Start Saving
</LinkButton>
</Links>
Expand All @@ -180,10 +180,10 @@ export const Save: FC = () => {
</p>
</div>
<Links>
<LinkButton highlight href="https://staking.mstable.app/">
<LinkButton highlight href="https://staking.mstable.org/">
Stake MTA
</LinkButton>
<LinkButton highlight href="https://mstable.app/#/musd/save">
<LinkButton highlight href="https://app.mstable.org/#/musd/save">
Earn MTA
</LinkButton>
</Links>
Expand Down

0 comments on commit e9cd99d

Please sign in to comment.