Skip to content

Commit

Permalink
feat: add unfurl image + metadata
Browse files Browse the repository at this point in the history
- closes #997
  • Loading branch information
0xpatrickdev committed Mar 21, 2024
1 parent 2fb1224 commit e7bc540
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion main/.vitepress/config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,19 @@ export default defineConfig({
outDir: '../dist',
/* --- HOME PAGE --- */
title: 'Agoric Documentation', // title for the site. prefix for all page titles and displayed in the navbar
description: 'Build, deploy and operate dApps and DeFi markets.', // desc for the site; rendered as a <meta> tag in the page HTML
description: 'The blockchain framework tailored for JavaScript developers.', // desc for the site; rendered as a <meta> tag in the page HTML
// Extra tags to inject into the page HTML <head>. You can specify each tag in the form of [tagName, { attrName: attrValue }, innerHTML?].
head: [
[
'meta',
{ name: 'viewport', content: 'width=device-width, initial-scale=1' },
],
['meta', { name: 'og:image', content: '/agoric-og.png' }],
['meta', { name: 'og:type', content: 'website' }],
['meta', { name: 'og:title', content: 'Agoric Documentation' }],
['meta', { name: 'og:site_name', content: 'Agoric Documentation' }],
['meta', { name: 'og:url', content: 'https://docs.agoric.com' }],
['meta', { name: 'twitter:card', content: '/agoric-og.png' }],
['link', { rel: 'icon', href: '/favicon-full.ico' }],
[
'style',
Expand Down
Binary file added main/public/agoric-og.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit e7bc540

Please sign in to comment.