From 5848e7607e3c520591b262e13d5ff20662b24f43 Mon Sep 17 00:00:00 2001 From: J M Rossy Date: Fri, 28 Jun 2024 17:38:05 +0100 Subject: [PATCH] Update home link and station references (#15) --- README.md | 2 +- src/app/layout.tsx | 4 ++-- src/config/links.ts | 6 +++--- src/features/store.ts | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index a2f780e..952b07b 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ For information about how Celo's Proof-of-Stake protocol works, or other aspects ## Support -For support, you can [file an issue](https://github.com/jmrossy/celo-station/issues/new) on this repository or join the [Celo Discord](https://discord.gg/celo) +For support, you can [file an issue](https://github.com/celo-org/celo-mondo/issues/new) on this repository or join the [Celo Discord](https://discord.gg/celo) ## Development diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 619beb5..979c564 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -16,11 +16,11 @@ export const metadata: Metadata = { }, description: 'Participate in Celo staking and governance. Start earning automatic rewards on your CELO!', - keywords: ['celo', 'staking', 'governance', 'delegation', 'station'], + keywords: ['celo', 'staking', 'governance', 'delegation', 'mondo'], openGraph: { title: 'Celo Mondo', description: 'Staking & Governance for Celo', - images: [`/logos/celo-station.png`], + images: [`/logos/celo.png`], }, twitter: { card: 'summary_large_image', diff --git a/src/config/links.ts b/src/config/links.ts index 0194e18..f365bf2 100644 --- a/src/config/links.ts +++ b/src/config/links.ts @@ -1,13 +1,13 @@ export const links = { - home: 'https://celo-station.vercel.app', + home: 'https://mondo.celo.org', celo: 'https://celo.org', discord: 'https://discord.gg/celo', - github: 'https://github.com/jmrossy/celo-station', + github: 'https://github.com/celo-org/celo-mondo', twitter: 'https://twitter.com/CeloOrg', docs: 'https://docs.celo.org', forum: 'https://forum.celo.org', governance: 'https://github.com/celo-org/governance', - delegate: 'https://github.com/jmrossy/celo-station/blob/main/src/config/delegates.json', + delegate: 'https://github.com/celo-org/celo-mondo/blob/main/src/config/delegates.json', // RPCs forno: 'https://forno.celo.org', infura: 'https://celo-mainnet.infura.io/v3', diff --git a/src/features/store.ts b/src/features/store.ts index b43a874..b4a85bd 100644 --- a/src/features/store.ts +++ b/src/features/store.ts @@ -27,7 +27,7 @@ export const useStore = create()( }, }), { - name: 'celo-station-state', + name: 'celo-mondo-state', partialize: (_state) => ({}), version: PERSIST_STATE_VERSION, },