Skip to content
This repository was archived by the owner on Dec 5, 2025. It is now read-only.

Commit 8fd519f

Browse files
authored
Merge pull request #580 from kodadot/579-spotlight-og
OG for spotlight
2 parents 4ef0827 + 98f99f6 commit 8fd519f

File tree

1 file changed

+35
-0
lines changed

1 file changed

+35
-0
lines changed

src/components/landing/Spotlight.vue

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,41 @@
1212
import { Component, Vue } from 'vue-property-decorator';
1313
1414
@Component<Leaderboard>({
15+
metaInfo() {
16+
return {
17+
meta: [
18+
{
19+
property: 'og:title',
20+
content: 'KodaDot | Kusama NFT Market explorer'
21+
},
22+
{ property: 'og:url', content: 'https://nft.kodadot.xyz' },
23+
{
24+
property: 'og:description',
25+
content: 'Discover new artists based on the ranking'
26+
},
27+
{
28+
property: 'og:site_name',
29+
content: 'Low fees and low carbon minting'
30+
},
31+
{
32+
property: 'og:image',
33+
content: 'https://nft.kodadot.xyz/kodadot_community.jpeg'
34+
},
35+
{
36+
property: 'twitter:title',
37+
content: 'NFT artist ranking'
38+
},
39+
{
40+
property: 'twitter:description',
41+
content: 'Discover new artists based on the ranking'
42+
},
43+
{
44+
property: 'twitter:image',
45+
content: 'https://nft.kodadot.xyz/kodadot_community.jpeg'
46+
}
47+
]
48+
};
49+
},
1550
components: {
1651
Identity: () => import('@/components/shared/format/Identity.vue'),
1752
SpotlightTable: () => import('@/components/spotlight/SpotlightTable.vue')

0 commit comments

Comments
 (0)