themes-cyberpunk/blocks/feature_card_neon.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

35 lines
888 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Neon Feature Card",
"description": "Single feature card with icon, title, body and per-card neon edge glow.",
"type": "object",
"properties": {
"icon": {
"type": "string",
"title": "Icon",
"description": "Media reference for the feature icon",
"x-editor": "media"
},
"title": {
"type": "string",
"title": "Title",
"description": "Card heading",
"x-editor": "text"
},
"body": {
"type": "string",
"title": "Body",
"description": "Supporting rich text",
"x-editor": "richtext"
},
"accent": {
"type": "string",
"title": "Accent",
"description": "Neon edge colour: magenta, cyan or lime",
"x-editor": "select",
"enum": ["magenta", "cyan", "lime"],
"default": "magenta"
}
}
}