chore(stats): update data seo metadata
Some checks failed
deploy / deploy (push) Has been cancelled

This commit is contained in:
Adam 2026-06-19 11:36:26 -05:00
parent 355a0bcf5b
commit 0f6c9b3874
No known key found for this signature in database
GPG key ID: 9CB48779AF150E75
4 changed files with 12 additions and 10 deletions

View file

@ -7,8 +7,11 @@ import "./app.css"
function AppMeta() {
return (
<>
<Title>OpenCode Data</Title>
<Meta name="description" content="OpenCode usage data, market share, token cost, and session cost." />
<Title>AI Model Usage Rankings | OpenCode Data</Title>
<Meta
name="description"
content="Explore OpenCode Go usage across AI models, including token volume, rankings, market share, token pricing, session cost, cache ratio, and geo breakdowns."
/>
</>
)
}

View file

@ -120,11 +120,9 @@ export default function StatsModel() {
const [themePreference, setThemePreference] = createSignal<ThemePreference>("system")
const modelName = createMemo(() => catalogEntry()?.name ?? stats()?.model ?? modelParam() ?? "Model")
const labName = createMemo(() => formatCatalogLabName(catalogEntry()?.lab ?? stats()?.provider ?? labParam()))
const modelTitle = createMemo(() => `${modelName()} Data`)
const modelTitle = createMemo(() => `${modelName()} Usage, Cost & Rank | OpenCode Data`)
const modelDescription = createMemo(() =>
stats()
? `${modelName()} usage, rank, token mix, cost, geo breakdown, and peer data across OpenCode Go.`
: `${modelName()} model facts, limits, and OpenCode Go usage availability.`,
`View ${modelName()} OpenCode Go usage data, including token volume, weekly rank, token mix, costs, cache ratio, sessions, geo breakdowns, and peer models.`,
)
const modelUrl = createMemo(() =>
new URL(

View file

@ -69,10 +69,10 @@ export default function StatsLab() {
const githubStars = createAsync(() => getGitHubStars())
const [themePreference, setThemePreference] = createSignal<ThemePreference>("system")
const labName = createMemo(() => lab()?.name ?? formatCatalogLabName(labParam()))
const labTitle = createMemo(() => `${labName()} Models`)
const labTitle = createMemo(() => `${labName()} AI Model Usage & Rankings | OpenCode Data`)
const labDescription = createMemo(
() =>
`Explore ${labName()} models used in OpenCode, with recent token usage, context windows, release dates, and model-specific data.`,
`Compare ${labName()} models used in OpenCode Go, including token usage, model rankings, context windows, release dates, costs, and model-specific data.`,
)
const labUrl = createMemo(() => new URL(lab()?.id ?? labParam(), statsCanonicalBaseUrl).toString())
const updateThemePreference = (preference: ThemePreference) => {

View file

@ -49,8 +49,9 @@ const rangeLabels: Record<UsageRange, string> = {
"1M": "1 Month",
"2M": "2 Months",
}
const statsHomeTitle = "OpenCode Data"
const statsHomeDescription = "OpenCode usage data, market share, token cost, and session cost."
const statsHomeTitle = "AI Model Usage Rankings | OpenCode Data"
const statsHomeDescription =
"Explore OpenCode Go usage across AI models, including token volume, rankings, market share, token pricing, session cost, cache ratio, and geo breakdowns."
const statsHomeFallbackUrl = "https://opencode.ai/data/"
const statsUnfurlPath = "banner.jpg"
const statsUnfurlAlt = "OpenCode Data wordmark on a dark patterned background"