themes-corporate-modernist/blocks/hero_statement.schema.json
Alex Dunmow 3207394c38 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:48 +08:00

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" }
}
}
}
}