Skip to content

Commit 6b79598

Browse files
committed
Add SoftwareApplication structured data
1 parent 077a40f commit 6b79598

1 file changed

Lines changed: 29 additions & 0 deletions

File tree

astro.config.mjs

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,35 @@ export default defineConfig({
3232
gtag('config', 'G-181FMPJECK');
3333
`,
3434
},
35+
// Structured Data - SoftwareApplication
36+
{
37+
tag: 'script',
38+
attrs: { type: 'application/ld+json' },
39+
content: JSON.stringify({
40+
"@context": "https://schema.org",
41+
"@type": "SoftwareApplication",
42+
"name": "BotDrop",
43+
"alternateName": "手机安装 OpenClaw",
44+
"applicationCategory": "UtilitiesApplication",
45+
"operatingSystem": "Android",
46+
"description": "The easiest way to install OpenClaw on your phone. One-tap install AI bots on Android, no server needed.",
47+
"url": "https://docs.botdrop.app",
48+
"downloadUrl": "https://botdrop.app",
49+
"softwareVersion": "0.2.8",
50+
"inLanguage": ["en", "zh-CN"],
51+
"author": {
52+
"@type": "Organization",
53+
"name": "BotDrop",
54+
"url": "https://botdrop.app"
55+
},
56+
"offers": {
57+
"@type": "Offer",
58+
"price": "0",
59+
"priceCurrency": "USD"
60+
},
61+
"keywords": "OpenClaw, AI bot, Android, mobile AI, telegram bot, 手机安装 OpenClaw"
62+
}),
63+
},
3564
],
3665
logo: {
3766
src: './src/assets/logo.svg',

0 commit comments

Comments
 (0)