From 84878afc8f63068d41c8f72368be4a47a9c996b2 Mon Sep 17 00:00:00 2001 From: max-digi Date: Wed, 18 Mar 2026 13:07:04 +0000 Subject: [PATCH 1/2] feat: add mainnet launch banner Amp-Thread-ID: https://ampcode.com/threads/T-019d0107-21fa-759a-8b19-264dbc84d616 Co-authored-by: Amp --- vocs.config.ts | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/vocs.config.ts b/vocs.config.ts index aeaa9afe..1c78cdcf 100644 --- a/vocs.config.ts +++ b/vocs.config.ts @@ -12,6 +12,14 @@ const baseUrl = (() => { })() export default defineConfig({ + banner: { + dismissable: true, + backgroundColor: '#5B4CDB', + content: + 'Tempo Mainnet is live. [Read our announcement.](https://tempo.xyz/blog/mainnet) →', + height: '40px', + textColor: 'white', + }, changelog: Changelog.github({ prereleases: true, repo: 'tempoxyz/tempo' }), // TODO: Set back to true once tempoxyz/tempo#tip-1011 dead link is fixed checkDeadlinks: 'warn', From 349fd44832fcb6d509cb365ea8eaad4a1b4abc42 Mon Sep 17 00:00:00 2001 From: max-digi Date: Wed, 18 Mar 2026 13:22:25 +0000 Subject: [PATCH 2/2] feat: make banner non-dismissable Amp-Thread-ID: https://ampcode.com/threads/T-019d0107-21fa-759a-8b19-264dbc84d616 Co-authored-by: Amp --- vocs.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vocs.config.ts b/vocs.config.ts index 1c78cdcf..d6e574f2 100644 --- a/vocs.config.ts +++ b/vocs.config.ts @@ -13,7 +13,7 @@ const baseUrl = (() => { export default defineConfig({ banner: { - dismissable: true, + dismissable: false, backgroundColor: '#5B4CDB', content: 'Tempo Mainnet is live. [Read our announcement.](https://tempo.xyz/blog/mainnet) →',