diff --git a/docs/.vitepress/config.ts b/docs/.vitepress/config.ts index cbf523a..863a93b 100644 --- a/docs/.vitepress/config.ts +++ b/docs/.vitepress/config.ts @@ -4,6 +4,19 @@ import { defineConfig } from 'vitepress'; export default defineConfig({ title: 'Osty', description: 'Framework for building Nostr web applications', + + /* prettier-ignore */ + head: [ + ['link', { rel: 'icon', href: '/favicon.ico' }], + ['meta', { name: 'theme-color', content: '#5f67ee' }], + ['meta', { property: 'og:type', content: 'website' }], + ['meta', { property: 'og:locale', content: 'en' }], + ['meta', { property: 'og:title', content: 'Osty | Framework for building Nostr web applications' }], + ['meta', { property: 'og:site_name', content: 'Osty' }], + ['meta', { property: 'og:image', content: 'https://osty.dev/osty-og.png' }], + ['meta', { property: 'og:url', content: 'https://osty.dev/' }], + ], + themeConfig: { // https://vitepress.dev/reference/default-theme-config logo: '/osty.png', diff --git a/docs/public/osty-og.png b/docs/public/osty-og.png new file mode 100644 index 0000000..6ff9555 Binary files /dev/null and b/docs/public/osty-og.png differ