Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 11 additions & 11 deletions public/locales/de/layout.json
Original file line number Diff line number Diff line change
Expand Up @@ -103,20 +103,14 @@
"title": "Reddit"
},
{
"title": "Twitter"
},
{
"title": "Facebook"
"title": "X (formerly Twitter)"
},
{
"title": "GitHub"
},
{
"title": "YouTube"
},
{
"title": "LinkedIn"
},
{
"title": "Discord"
},
Expand All @@ -139,19 +133,25 @@
"title": "Telegram (IT)"
},
{
"title": "Telegram (ID)"
"title": "Telegram (IN)"
},
{
"title": "Telegram (TR)"
},
{
"title": "Telegram (ZH)"
},
{
"title": "Telegram (RU)"
},
{
"title": "Telegram (PT)"
},
{
"title": "Telegram (Masternodes EN)"
},
{
"title": "Telegram (Masternodes DE)"
},
{
"title": "Wiki"
}
]
}
Expand Down
22 changes: 11 additions & 11 deletions public/locales/en-US/layout.json
Original file line number Diff line number Diff line change
Expand Up @@ -105,20 +105,14 @@
"title": "Reddit"
},
{
"title": "Twitter"
},
{
"title": "Facebook"
"title": "X (formerly Twitter)"
},
{
"title": "GitHub"
},
{
"title": "YouTube"
},
{
"title": "LinkedIn"
},
{
"title": "Discord"
},
Expand All @@ -141,19 +135,25 @@
"title": "Telegram (IT)"
},
{
"title": "Telegram (ID)"
"title": "Telegram (IN)"
},
{
"title": "Telegram (TR)"
},
{
"title": "Telegram (ZH)"
},
{
"title": "Telegram (RU)"
},
{
"title": "Telegram (PT)"
},
{
"title": "Telegram (Masternodes EN)"
},
{
"title": "Telegram (Masternodes DE)"
},
{
"title": "Wiki"
}
]
}
Expand Down
24 changes: 12 additions & 12 deletions public/locales/fr/layout.json
Original file line number Diff line number Diff line change
Expand Up @@ -101,19 +101,13 @@
"title": "Reddit"
},
{
"title": "Twitter"
},
{
"title": "Facebook"
"title": "X (formerly Twitter)"
},
{
"title": "GitHub"
},
{
"title": "Youtube"
},
{
"title": "LinkedIn"
"title": "YouTube"
},
{
"title": "Discord"
Expand All @@ -137,19 +131,25 @@
"title": "Telegram (IT)"
},
{
"title": "Telegram (ID)"
"title": "Telegram (IN)"
},
{
"title": "Telegram (TR)"
},
{
"title": "Telegram (ZH)"
},
{
"title": "Telegram (RU)"
},
{
"title": "Telegram (PT)"
},
{
"title": "Telegram (Masternodes EN)"
},
{
"title": "Telegram (Masternodes DE)"
},
{
"title": "Wiki"
}
]
}
Expand Down
22 changes: 11 additions & 11 deletions public/locales/zh-Hans/layout.json
Original file line number Diff line number Diff line change
Expand Up @@ -101,20 +101,14 @@
"title": "Reddit"
},
{
"title": "Twitter"
},
{
"title": "Facebook"
"title": "X (formerly Twitter)"
},
{
"title": "GitHub"
},
{
"title": "YouTube"
},
{
"title": "LinkedIn"
},
{
"title": "Discord"
},
Expand All @@ -137,19 +131,25 @@
"title": "Telegram (IT)"
},
{
"title": "Telegram (ID)"
"title": "Telegram (IN)"
},
{
"title": "Telegram (TR)"
},
{
"title": "Telegram (ZH)"
},
{
"title": "Telegram (RU)"
},
{
"title": "Telegram (PT)"
},
{
"title": "Telegram (Masternodes EN)"
},
{
"title": "Telegram (Masternodes DE)"
},
{
"title": "Wiki"
}
]
}
Expand Down
24 changes: 12 additions & 12 deletions public/locales/zh-Hant/layout.json
Original file line number Diff line number Diff line change
Expand Up @@ -101,19 +101,13 @@
"title": "Reddit"
},
{
"title": "Twitter"
},
{
"title": "Facebook"
"title": "X (formerly Twitter)"
},
{
"title": "GitHub"
},
{
"title": "Youtube"
},
{
"title": "LinkedIn"
"title": "YouTube"
},
{
"title": "Discord"
Expand All @@ -137,19 +131,25 @@
"title": "Telegram (IT)"
},
{
"title": "Telegram (ID)"
"title": "Telegram (IN)"
},
{
"title": "Telegram (TR)"
},
{
"title": "Telegram (ZH)"
},
{
"title": "Telegram (RU)"
},
{
"title": "Telegram (PT)"
},
{
"title": "Telegram (Masternodes EN)"
},
{
"title": "Telegram (Masternodes DE)"
},
{
"title": "Wiki"
}
]
}
Expand Down
17 changes: 7 additions & 10 deletions src/layouts/Default.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -74,16 +74,13 @@ export function Default(props: PropsWithChildren<any>): JSX.Element | null {
content="image/png"
/>

{/* Twitter */}
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@defichain" />
<meta name="twitter:creator" content="@defichain" />
<meta name="twitter:title" content={linkTitle} />
<meta name="twitter:description" content={description} />
<meta
name="twitter:image"
content="https://defichain.com/img/og/share.png"
/>
{/* X (formerly twitter) */}
<meta name="x:card" content="summary_large_image" />
<meta name="x:site" content="@defichain" />
<meta name="x:creator" content="@defichain" />
<meta name="x:title" content={linkTitle} />
<meta name="x:description" content={description} />
<meta name="x:image" content="https://defichain.com/img/og/share.png" />
<link rel="icon" href="/favicon.ico" />
<link rel="icon" type="image/png" sizes="48x48" href="/favicon.png" />
</Head>
Expand Down
Loading