diff --git a/docusaurus.config.mjs b/docusaurus.config.mjs index a6a8ecc78..aa2244951 100644 --- a/docusaurus.config.mjs +++ b/docusaurus.config.mjs @@ -13,8 +13,8 @@ const config = { stagingEnv: process.env.REACT_APP_STAGING, nodeEnv: process.env.NODE_ENV, }, - title: 't1', - tagline: 'Documentation and Guides', + title: 't1 Docs', + tagline: 'Documentation for t1, the permissionless credit protocol for DeFi.', url: 'https://docs.t1protocol.com', baseUrl: '/', onBrokenLinks: 'warn', @@ -30,6 +30,16 @@ const config = { }, }, image: 'img/t1-rollup.png', + metadata: [ + { name: 'twitter:site', content: '@t1protocol' }, + { name: 'twitter:creator', content: '@t1protocol' }, + { property: 'og:type', content: 'website' }, + { property: 'og:site_name', content: 't1' }, + { property: 'og:image:alt', content: 't1' }, + { name: 'twitter:image:alt', content: 't1' }, + { property: 'og:image:width', content: '3200' }, + { property: 'og:image:height', content: '1772' }, + ], prism: { additionalLanguages: ['solidity'], }, diff --git a/package.json b/package.json index c24ca6b85..8e0b74917 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@t1/docs", - "description": "t1 Protocol Documentation", + "description": "t1 Documentation", "license": "MIT", "scripts": { "docusaurus": "docusaurus", diff --git a/src/pages/index.tsx b/src/pages/index.tsx index edaf7f134..787605359 100644 --- a/src/pages/index.tsx +++ b/src/pages/index.tsx @@ -24,7 +24,7 @@ export const actions = [ title: 'Learn More', icon: Info, to: '/intro/protocol/introduction', - text: `Get familiar with the core concepts of the t1 Protocol.`, + text: `Get familiar with the core concepts of t1.`, }, { title: 'Programmable Custody', @@ -299,7 +299,7 @@ const SafeLinksContainer = styled.div` export default function Home() { return ( - + {versionLabel}, }} > - {'This is unreleased documentation for the t1 Protocol.'} + {'This is unreleased documentation for t1.'} ) }