diff --git a/components/ProjectsInfo.vue b/components/ProjectsInfo.vue index 7823fb7..bee4579 100644 --- a/components/ProjectsInfo.vue +++ b/components/ProjectsInfo.vue @@ -41,7 +41,7 @@ const cards = [ { title: t('projects-info.solidity-tools-title'), message: t('projects-info.solidity-tools-message'), - route: ROUTE_PATH.abi, + route: ROUTE_PATH.abiEncoder, btnText: t('projects-info.visit-btn'), }, ] diff --git a/nuxt.config.ts b/nuxt.config.ts index d64d736..a1758c3 100644 --- a/nuxt.config.ts +++ b/nuxt.config.ts @@ -29,8 +29,12 @@ export default defineNuxtConfig({ }, { hid: 'description', name: 'description', content: 'Solarity' }, { property: 'og:title', content: 'Solarity' }, - { property: 'og:description', content: 'Solarity' }, - { property: 'og:image', content: '/branding/logo.png' }, + { + property: 'og:description', + content: 'Solarity - your open source Solidity ecosystem', + }, + { property: 'og:url', content: 'https://solarity.dev/' }, + { property: 'og:image', content: '/branding/og-image.png' }, { property: 'og:locale', content: 'en_GB' }, { property: 'og:type', content: 'website' }, { name: 'twitter:card', content: 'summary_large_image' }, diff --git a/public/branding/og-image.png b/public/branding/og-image.png new file mode 100644 index 0000000..99bb3b6 Binary files /dev/null and b/public/branding/og-image.png differ