From 848712ede6b0591bd7400d168347fa47b7aee54b Mon Sep 17 00:00:00 2001 From: Orest Tarasiuk <830847+OrestTa@users.noreply.github.com> Date: Wed, 23 Sep 2026 13:18:42 +0200 Subject: [PATCH 1/2] fix: set social unfurl site name to t1 Link shares of docs.t1protocol.com title-cased the domain as T1Protocol (missing og:site_name) and doubled the homepage title as "t1 Docs | t1". Co-authored-by: Cursor --- docusaurus.config.mjs | 14 ++++++++++++-- src/pages/index.tsx | 2 +- 2 files changed, 13 insertions(+), 3 deletions(-) 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/src/pages/index.tsx b/src/pages/index.tsx index edaf7f134..0799db9a9 100644 --- a/src/pages/index.tsx +++ b/src/pages/index.tsx @@ -299,7 +299,7 @@ const SafeLinksContainer = styled.div` export default function Home() { return ( - + Date: Wed, 23 Sep 2026 13:20:18 +0200 Subject: [PATCH 2/2] fix: drop Protocol from the product name The product is t1, never "t1 Protocol". Update the homepage card, package description, and version-banner copy. Co-authored-by: Cursor --- package.json | 2 +- src/pages/index.tsx | 2 +- src/theme/DocVersionSuggestions/index.tsx | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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 0799db9a9..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', diff --git a/src/theme/DocVersionSuggestions/index.tsx b/src/theme/DocVersionSuggestions/index.tsx index 3e4f0df6a..5af5909ee 100644 --- a/src/theme/DocVersionSuggestions/index.tsx +++ b/src/theme/DocVersionSuggestions/index.tsx @@ -32,7 +32,7 @@ function UnreleasedVersionLabel({ siteTitle, versionLabel }: VersionLabelProps) versionLabel: {versionLabel}, }} > - {'This is unreleased documentation for the t1 Protocol.'} + {'This is unreleased documentation for t1.'} ) }