Skip to content

Commit e7bc540

Browse files
committed
feat: add unfurl image + metadata
- closes #997
1 parent 2fb1224 commit e7bc540

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

main/.vitepress/config.mjs

+7-1
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,19 @@ export default defineConfig({
88
outDir: '../dist',
99
/* --- HOME PAGE --- */
1010
title: 'Agoric Documentation', // title for the site. prefix for all page titles and displayed in the navbar
11-
description: 'Build, deploy and operate dApps and DeFi markets.', // desc for the site; rendered as a <meta> tag in the page HTML
11+
description: 'The blockchain framework tailored for JavaScript developers.', // desc for the site; rendered as a <meta> tag in the page HTML
1212
// Extra tags to inject into the page HTML <head>. You can specify each tag in the form of [tagName, { attrName: attrValue }, innerHTML?].
1313
head: [
1414
[
1515
'meta',
1616
{ name: 'viewport', content: 'width=device-width, initial-scale=1' },
1717
],
18+
['meta', { name: 'og:image', content: '/agoric-og.png' }],
19+
['meta', { name: 'og:type', content: 'website' }],
20+
['meta', { name: 'og:title', content: 'Agoric Documentation' }],
21+
['meta', { name: 'og:site_name', content: 'Agoric Documentation' }],
22+
['meta', { name: 'og:url', content: 'https://docs.agoric.com' }],
23+
['meta', { name: 'twitter:card', content: '/agoric-og.png' }],
1824
['link', { rel: 'icon', href: '/favicon-full.ico' }],
1925
[
2026
'style',

main/public/agoric-og.png

118 KB
Loading

0 commit comments

Comments
 (0)