jacobinwwey_obsidian-NotEMD/website/sidebars.js
Jacobinwwey 5bc027a002 feat(geo): Phase 3 — remove ja locale, sidebar reorder, sameAs, version bump
- Remove ja locale: 0 translated pages caused hreflang mismatch
  (English content served with hreflang="ja" tag). ja/ removed from
  config and build output
- Sidebar reorder: Getting Started before pillar-ai-knowledge,
  FAQ moved to last position for new-user reading flow
- Organization Schema: add sameAs with GitHub repo and Discord URLs
- Logo reference: update from .png to .svg in global Schema
- Docusaurus packages: upgrade core/preset from ^3.6.3 to ^3.10.1
  (matches theme-mermaid version, fixes version inconsistency)
- Update GEO_ROADMAP.md with Phase 3 completion status
2026-06-13 03:50:47 -05:00

54 lines
1.1 KiB
JavaScript

// @ts-check
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
const sidebars = {
tutorialSidebar: [
'intro',
{
type: 'category',
label: 'Getting Started',
items: [
'getting-started/installation',
'getting-started/quick-start',
'getting-started/configuration',
],
},
{
type: 'category',
label: 'Core Features',
items: [
'features/wiki-links',
'features/concept-notes',
'features/research',
'features/translation',
'features/diagrams',
'features/workflows',
],
},
{
type: 'category',
label: 'LLM Providers',
items: [
'providers/overview',
'providers/openai',
'providers/anthropic',
'providers/google',
'providers/local',
'providers/china',
],
},
{
type: 'category',
label: 'Advanced',
items: [
'advanced/custom-prompts',
'advanced/batch-processing',
'advanced/troubleshooting',
],
},
'pillar-ai-knowledge',
'faq',
],
};
export default sidebars;