File tree Expand file tree Collapse file tree 3 files changed +12
-3
lines changed Expand file tree Collapse file tree 3 files changed +12
-3
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " ethereum-org-website" ,
3
- "version" : " 2.12.3 " ,
3
+ "version" : " 2.12.4 " ,
4
4
"description" : " Website of ethereum.org" ,
5
5
"main" : " index.js" ,
6
6
"repository" : " git@github.com:ethereum/ethereum-org-website.git" ,
Original file line number Diff line number Diff line change 1301
1301
"page-get-eth-24-hrs" : " (Last 24 hours)" ,
1302
1302
"transaction-fees" : " transaction fees" ,
1303
1303
"page-dapps-title" : " Decentralized applications (dapps)" ,
1304
+ "page-dapps-desc" : " Find an Ethereum application to try." ,
1304
1305
"page-dapps-hero-header" : " Ethereum-powered tools and services" ,
1305
1306
"page-dapps-hero-subtitle" : " Dapps are a growing movement of applications that use Ethereum to disrupt business models or invent new ones." ,
1306
1307
"page-dapps-what-are-dapps" : " What are dapps?" ,
Original file line number Diff line number Diff line change @@ -1042,8 +1042,9 @@ const DappsPage = ({ data }) => {
1042
1042
return (
1043
1043
< Page >
1044
1044
< PageMetadata
1045
- title = "Decentralized applications (dapps)"
1046
- description = "Find an Ethereum application to try."
1045
+ title = { translateMessageId ( "page-dapps-title" , intl ) }
1046
+ description = { translateMessageId ( "page-dapps-desc" , intl ) }
1047
+ image = { data . ogImage . childImageSharp . fixed . src }
1047
1048
/>
1048
1049
< Content >
1049
1050
< HeroContainer >
@@ -1601,6 +1602,13 @@ export const query = graphql`
1601
1602
}
1602
1603
}
1603
1604
}
1605
+ ogImage: file(relativePath: { eq: "doge-computer.png" }) {
1606
+ childImageSharp {
1607
+ fixed(width: 1200) {
1608
+ src
1609
+ }
1610
+ }
1611
+ }
1604
1612
magicians: file(relativePath: { eq: "magicians.png" }) {
1605
1613
childImageSharp {
1606
1614
fluid(maxWidth: 300) {
You can’t perform that action at this time.
0 commit comments