Skip to content

Commit 528ff4d

Browse files
committed
fix(seo): fix duplicate title tag and strengthen homepage metadata
- Fix duplicated title ("NodeDB - NodeDB") by moving "NodeDB" out of frontmatter title into the page-level brand; frontmatter now reads "Hybrid Database for AI Workloads" - Expand meta description to include PostgreSQL-compatible and edge-to-cloud signals for richer search snippets - Add <Head> block with og:type=website and SoftwareApplication JSON-LD schema for structured-data eligibility - Change Hero H1 from bare "NodeDB" to keyword-rich "NodeDB — Hybrid Database for AI" - Expand oxidoc.toml project description to ~170 chars so inner pages inherit a stronger default meta description
1 parent 905bad3 commit 528ff4d

2 files changed

Lines changed: 20 additions & 4 deletions

File tree

home.rdx

Lines changed: 19 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,26 @@
11
---
2-
title: NodeDB - Hybrid Database for AI Workloads
3-
description: Distributed hybrid database with seven engines — Vector, Graph, Document, Columnar, Key-Value, Full-Text Search, and CRDT — in a single Rust binary.
2+
title: Hybrid Database for AI Workloads
3+
description: NodeDB is a distributed hybrid database with seven engines — Vector, Graph, Document, Columnar, Key-Value, Full-Text Search, and CRDT — in a single Rust binary. PostgreSQL-compatible, edge-to-cloud.
44
layout: landing
55
---
66

7-
<Hero title="NodeDB">
7+
<Head>
8+
<meta property="og:type" content="website" />
9+
<script type="application/ld+json">
10+
{
11+
"@context": "https://schema.org",
12+
"@type": "SoftwareApplication",
13+
"name": "NodeDB",
14+
"applicationCategory": "DatabaseApplication",
15+
"operatingSystem": "Linux, macOS, Windows, iOS, Android, Web",
16+
"description": "Distributed hybrid database with seven engines — Vector, Graph, Document, Columnar, Key-Value, Full-Text Search, and CRDT — in a single Rust binary.",
17+
"url": "https://nodedb.dev",
18+
"offers": { "@type": "Offer", "price": "0", "priceCurrency": "USD" }
19+
}
20+
</script>
21+
</Head>
22+
23+
<Hero title="NodeDB — Hybrid Database for AI">
824
<HeroAction label="Get Started" href="/docs/introduction/quickstart" variant="primary" />
925
<HeroAction label="GitHub" href="https://github.com/NodeDB-Lab/nodedb" variant="secondary" />
1026

oxidoc.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "NodeDB"
3-
description = "Distributed hybrid database for multi-modal AI and agentic workloads"
3+
description = "Distributed hybrid database for multi-modal AI and agentic workloads — Vector, Graph, Document, Columnar, Key-Value, Full-Text Search, and CRDT engines in a single Rust binary."
44
logo = "/assets/logo.svg"
55
favicon = "/assets/logo.svg"
66
base_url = "https://nodedb.dev"

0 commit comments

Comments
 (0)