@x-wave/blog 1.0.39 → 1.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/consts/index.ts +10 -0
- package/index.js +959 -964
- package/package.json +4 -2
package/consts/index.ts
CHANGED
|
@@ -6,4 +6,14 @@ export const GITHUB_REPO_URL = 'https://github.com/polkadot-cloud'
|
|
|
6
6
|
|
|
7
7
|
export const STAKING_DASHBOARD_URL = 'https://staking.polkadot.cloud'
|
|
8
8
|
|
|
9
|
+
export const DEFAULT_META_TITLE =
|
|
10
|
+
'Polkadot Cloud Staking | Polkadot Staking (DOT)'
|
|
11
|
+
|
|
12
|
+
export const DEFAULT_META_DESCRIPTION =
|
|
13
|
+
'Polkadot Cloud Staking is the easiest way to stake DOT, check validator stats, manage your nominations and join nomination pools. Stake on Polkadot (DOT).'
|
|
14
|
+
|
|
15
|
+
export const DEFAULT_SITE_URL = 'https://docs.staking.polkadot.cloud'
|
|
16
|
+
|
|
17
|
+
export const DEFAULT_OG_IMAGE = `${DEFAULT_SITE_URL}/img/og-image.png`
|
|
18
|
+
|
|
9
19
|
export { NAVIGATION_DATA } from './navigation'
|