themes-pastel-dream/schemas/soft-navbar.schema.json
Alex Dunmow de55bbebd6 initial: theme plugin pastel-dream
Bootstrapped during the 2026-06-06 BlockNinja consolidation. Was previously
an unversioned directory inside ~/src/blockninja-themes/pastel-dream.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-06-06 14:11:41 +08:00

35 lines
959 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Soft Navbar",
"description": "Rounded pill nav with a watercolor blob behind the logo wordmark.",
"type": "object",
"properties": {
"logo": {
"type": "string",
"title": "Logo Wordmark",
"description": "Plain-text wordmark displayed at the top-left.",
"default": "Pastel Dream",
"x-editor": "text"
},
"menuName": {
"type": "string",
"title": "Menu",
"description": "Name of the menu to render in the pill.",
"default": "main",
"x-editor": "menu-select"
},
"ctaText": {
"type": "string",
"title": "CTA Label",
"description": "Optional pill button to the right of the menu.",
"x-editor": "text"
},
"ctaHref": {
"type": "string",
"title": "CTA Link",
"description": "Target URL or internal page link for the CTA pill.",
"x-editor": "link"
}
}
}