themes-scifi-clean/schemas/schematic_hero.schema.json
Alex Dunmow 96b87b3e81 initial: theme plugin scifi-clean
Bootstrapped during the 2026-06-06 BlockNinja consolidation. Was previously
an unversioned directory inside ~/src/blockninja-themes/scifi-clean.

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

63 lines
1.6 KiB
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Schematic Hero",
"description": "Landing hero with a large display title over a blueprint image and dual CTAs.",
"type": "object",
"properties": {
"title": {
"type": "string",
"title": "Title",
"description": "Main display headline (rendered in Space Grotesk at >= 64px).",
"x-editor": "text"
},
"kicker": {
"type": "string",
"title": "Kicker",
"description": "Short mono uppercase eyebrow text printed above the title.",
"x-editor": "text"
},
"image": {
"type": "string",
"title": "Background Image",
"description": "Blueprint / schematic image rendered behind the title.",
"x-editor": "media"
},
"primaryCta": {
"type": "object",
"title": "Primary CTA",
"description": "Primary call-to-action link.",
"x-editor": "link",
"properties": {
"text": {
"type": "string",
"title": "Text",
"x-editor": "text"
},
"href": {
"type": "string",
"title": "URL",
"x-editor": "text"
}
}
},
"secondaryCta": {
"type": "object",
"title": "Secondary CTA",
"description": "Optional secondary call-to-action link.",
"x-editor": "link",
"properties": {
"text": {
"type": "string",
"title": "Text",
"x-editor": "text"
},
"href": {
"type": "string",
"title": "URL",
"x-editor": "text"
}
}
}
}
}