themes-brutalist/schemas/concrete_hero.schema.json
Alex Dunmow 771a286fa9 initial: theme plugin brutalist
Bootstrapped during the 2026-06-06 BlockNinja consolidation. Was previously
an unversioned directory inside ~/src/blockninja-themes/brutalist.

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

28 lines
730 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Concrete Hero",
"description": "200pt+ display headline with optional eyebrow and full-bleed image",
"type": "object",
"properties": {
"headline": {
"type": "string",
"title": "Headline",
"description": "Oversized display headline",
"x-editor": "text"
},
"eyebrow": {
"type": "string",
"title": "Eyebrow",
"description": "Mono eyebrow line shown above the headline",
"x-editor": "text"
},
"media": {
"type": "string",
"title": "Background Media",
"description": "Optional full-bleed background image",
"x-editor": "media"
}
},
"required": ["headline"]
}