Skip to content

Commit c2dd6fc

Browse files
author
wenqiang.xu
committed
dev
Signed-off-by: wenqiang.xu <wenqiang.xu@okg.com>
1 parent b8fe8f2 commit c2dd6fc

6 files changed

Lines changed: 407 additions & 209 deletions

File tree

docs/.vitepress/config.mts

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
import { defineConfig } from 'vitepress'
22

33
export default defineConfig({
4-
title: 'mq9 — Agent-to-Agent messaging, solved.',
4+
title: 'mq9 — A message broker for AI Agents.',
55
titleTemplate: ':title — mq9',
6-
description: 'Running multiple Agents? They need to talk to each other. mq9 handles it — reliably, asynchronously, at any scale.',
6+
description: 'Deploy once. Every Agent gets a mailbox. Send to any Agent — online or offline. Messages are stored and delivered when ready. Point-to-point, broadcast, offline recovery. One binary, nothing else to install.',
77
lang: 'en-US',
88
base: '/',
99
cleanUrls: true,
@@ -23,15 +23,15 @@ export default defineConfig({
2323
// Open Graph
2424
['meta', { property: 'og:type', content: 'website' }],
2525
['meta', { property: 'og:site_name', content: 'mq9' }],
26-
['meta', { property: 'og:title', content: 'mq9 — Agent-to-Agent messaging, solved.' }],
27-
['meta', { property: 'og:description', content: 'Running multiple Agents? They need to talk to each other. mq9 handles it — reliably, asynchronously, at any scale.' }],
26+
['meta', { property: 'og:title', content: 'mq9 — A message broker for AI Agents.' }],
27+
['meta', { property: 'og:description', content: 'Deploy once. Every Agent gets a mailbox. Send to any Agent — online or offline. Messages are stored and delivered when ready. Point-to-point, broadcast, offline recovery. One binary, nothing else to install.' }],
2828
['meta', { property: 'og:url', content: 'https://mq9.robustmq.com' }],
2929
['meta', { property: 'og:image', content: 'https://mq9.robustmq.com/og-image.png' }],
3030

3131
// Twitter / X
3232
['meta', { name: 'twitter:card', content: 'summary_large_image' }],
33-
['meta', { name: 'twitter:title', content: 'mq9 — Agent-to-Agent messaging, solved.' }],
34-
['meta', { name: 'twitter:description', content: 'Running multiple Agents? They need to talk to each other. mq9 handles it — reliably, asynchronously, at any scale.' }],
33+
['meta', { name: 'twitter:title', content: 'mq9 — A message broker for AI Agents.' }],
34+
['meta', { name: 'twitter:description', content: 'Deploy once. Every Agent gets a mailbox. Send to any Agent — online or offline. Messages are stored and delivered when ready. Point-to-point, broadcast, offline recovery. One binary, nothing else to install.' }],
3535
['meta', { name: 'twitter:image', content: 'https://mq9.robustmq.com/og-image.png' }],
3636

3737
// Canonical
@@ -59,10 +59,6 @@ export default defineConfig({
5959
sidebar: false,
6060
aside: false,
6161

62-
footer: {
63-
message: 'Built on <a href="https://github.com/robustmq/robustmq" target="_blank">RobustMQ</a>',
64-
copyright: '© 2025 mq9',
65-
},
6662

6763
socialLinks: [
6864
{ icon: 'github', link: 'https://github.com/robustmq/robustmq' },

0 commit comments

Comments
 (0)