themes-cyberpunk/blocks/navbar_terminal.schema.json
Alex Dunmow 8ea1477d37 feat: convert to codeless .bnp — templates + manifest, Go/templ deleted (WO-WZ-021)
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-07-04 15:26:00 +08:00

30 lines
877 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Terminal Navbar",
"description": "Replaces the built-in navbar with a mono-spaced $ prompt navbar, optional status dot, and a tap-friendly mobile menu toggle.",
"type": "object",
"properties": {
"menuName": {
"type": "string",
"title": "Menu",
"description": "Slug of the CMS menu to render (e.g. 'main')",
"x-editor": "menu-select"
},
"commandPrefix": {
"type": "string",
"title": "Command prefix",
"description": "Leading prompt characters (default '~/')",
"x-editor": "text",
"default": "~/"
},
"statusDot": {
"type": "string",
"title": "Status dot",
"description": "Show a glowing status indicator (uptime hint)",
"x-editor": "select",
"enum": ["on", "off"],
"default": "on"
}
}
}