Liquid Staking CTA (#281)

* 🚧 feat(token-page): Scaffold sidebar components for token page

* 🚧 feat(staking/governance): Scaffold adding Panels to Staking and Governance page

*  Update and add icons

* 🧱 Add strideZoneApp to shared config

* 🧱 Add dialogs, update ExternalLinkDialog

* 🚧 Add New Panels/Update paths

* Fix mobile Profile Panel

* 💄 fix desktop padding

*  Add New tag

* 💄 Highlight tag on StrideStakingPanel

* 💄 Single columns for panels on mobile breakpoint

* 💄 fix import nits and alignment nits on panels

* Add circular keplr icon
This commit is contained in:
Jared Vu
2024-02-07 11:17:54 -08:00
committed by GitHub
parent 26b426c9e9
commit 1a41ccaf2a
36 changed files with 2056 additions and 1475 deletions
+2
View File
@@ -21,6 +21,7 @@ export interface LinksConfigs {
newMarketProposalLearnMore: string;
stakingLearnMore?: string;
keplrDashboard?: string;
strideZoneApp?: string;
accountExportLearnMore?: string;
walletLearnMore?: string;
}
@@ -46,6 +47,7 @@ export const useURLConfigs = (): LinksConfigs => {
newMarketProposalLearnMore: linksConfigs.newMarketProposalLearnMore || FALLBACK_URL,
stakingLearnMore: linksConfigs.stakingLearnMore || FALLBACK_URL,
keplrDashboard: linksConfigs.keplrDashboard || FALLBACK_URL,
strideZoneApp: linksConfigs.strideZoneApp || FALLBACK_URL,
accountExportLearnMore: linksConfigs.accountExportLearnMore || FALLBACK_URL,
walletLearnMore: linksConfigs.walletLearnMore || FALLBACK_URL,
};