Skip to content

Commit dd14365

Browse files
authored
feat(builder): add og and twitter meta tags and preview image (#365)
Use builder.png for social card previews (og:image, twitter:image) and set Open Graph and Twitter Card meta tags for link sharing.
1 parent 9cd821b commit dd14365

2 files changed

Lines changed: 17 additions & 0 deletions

File tree

apps/builder/index.html

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,23 @@
1515
name="description"
1616
content="Spin up a front-end for any contract call in seconds. Select the function, auto-generate a React UI with wallet connect and multi-network support, and export a complete app."
1717
/>
18+
<!-- Open Graph -->
19+
<meta property="og:type" content="website" />
20+
<meta property="og:title" content="OpenZeppelin UI Builder" />
21+
<meta
22+
property="og:description"
23+
content="Spin up a front-end for any contract call in seconds. Select the function, auto-generate a React UI with wallet connect and multi-network support, and export a complete app."
24+
/>
25+
<meta property="og:url" content="https://builder.openzeppelin.com" />
26+
<meta property="og:image" content="https://builder.openzeppelin.com/builder.png" />
27+
<!-- Twitter -->
28+
<meta name="twitter:card" content="summary_large_image" />
29+
<meta name="twitter:title" content="OpenZeppelin UI Builder" />
30+
<meta
31+
name="twitter:description"
32+
content="Spin up a front-end for any contract call in seconds. Select the function, auto-generate a React UI with wallet connect and multi-network support, and export a complete app."
33+
/>
34+
<meta name="twitter:image" content="https://builder.openzeppelin.com/builder.png" />
1835
</head>
1936
<body>
2037
<div id="root"></div>

apps/builder/public/builder.png

2.33 MB
Loading

0 commit comments

Comments
 (0)