Bootstrapped during the 2026-06-06 BlockNinja consolidation. Was previously an unversioned directory inside ~/src/blockninja-themes/corporate-modernist. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
47 lines
1.3 KiB
JSON
47 lines
1.3 KiB
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"title": "Hero Statement",
|
|
"description": "Restrained hero with eyebrow, headline, lede, and a single accent CTA (plus optional outline secondary).",
|
|
"type": "object",
|
|
"properties": {
|
|
"eyebrow": {
|
|
"type": "string",
|
|
"title": "Eyebrow",
|
|
"description": "Small uppercase label above the headline",
|
|
"x-editor": "text"
|
|
},
|
|
"headline": {
|
|
"type": "string",
|
|
"title": "Headline",
|
|
"description": "Lead statement, typically one short sentence",
|
|
"x-editor": "text"
|
|
},
|
|
"lede": {
|
|
"type": "string",
|
|
"title": "Lede",
|
|
"description": "Supporting paragraph below the headline",
|
|
"x-editor": "textarea"
|
|
},
|
|
"primaryCta": {
|
|
"type": "object",
|
|
"title": "Primary CTA",
|
|
"description": "Accent-filled call to action",
|
|
"x-editor": "link",
|
|
"properties": {
|
|
"label": { "type": "string", "title": "Label" },
|
|
"href": { "type": "string", "title": "Href" }
|
|
}
|
|
},
|
|
"secondaryCta": {
|
|
"type": "object",
|
|
"title": "Secondary CTA",
|
|
"description": "Optional outline call to action",
|
|
"x-editor": "link",
|
|
"properties": {
|
|
"label": { "type": "string", "title": "Label" },
|
|
"href": { "type": "string", "title": "Href" }
|
|
}
|
|
}
|
|
}
|
|
}
|