WO-TF-011: dress the fine-dining / supper-club persona (gilded symmetry,
ziggurat frames, sunbursts, hairline gold rules; champagne/ivory light,
gold-on-lacquer dark) against the frozen Wave-0 builtin schemas.
Overrides (templates/overrides/art-deco/): all 49 mandatory builtin keys,
each re-skinned from the builtin default with every content field, provider
field, custom tag ({% img %}/{% button %}/{% form %}/{% signup_form %}/
{% auth_form %} wiring) and JS (navbar drawer, gallery lightbox, countdown,
stats count-up, video/audio facade, announcement dismiss) preserved verbatim.
Auth trio reproduces the untouchable /api/auth/* endpoints and field names;
captcha widget injected from _captcha_widget. manifest.yaml declares all 49.
Page templates: added blog-index, contact, auth (now 7 total) in Deco chrome.
Blocks rework (spec D5): footer/hero(marquee)/gallery/divider/pull-quote theme
blocks deleted — folded into overrides of the builtin keys. Kept persona
furniture reservation + menu; added private_dining + chef_signature (4 blocks).
Presets: 4 dual-mode (mode "both"), all 19 tokens, light AND dark tuned.
Fonts: bundle Cinzel + Cormorant Garamond (OFL) as Latin woff2 subsets in
assets/fonts/ (license recorded in OFL.txt); all font-family via var().
Email wrapper themed. required_icon_packs=["lucide"] + RECOMMENDED_ICONS.md.
Seed (demo): home/about/blog(3 posts)/contact/login pages in supper-club voice;
contact-form targets seeded contact_submissions data table; row_inserted
workflow emails admins.
Verified: ninja plugin build (codeless), verify, archive-check, and
check-safety all exit 0. Visual quality UNVERIFIED until Wave B.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
68 lines
1.6 KiB
JSON
68 lines
1.6 KiB
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"title": "Private Dining",
|
|
"description": "Private dining room showcase — framed image with room details and an enquiry CTA.",
|
|
"type": "object",
|
|
"properties": {
|
|
"eyebrow": {
|
|
"type": "string",
|
|
"title": "Eyebrow",
|
|
"description": "Small caps label above the heading.",
|
|
"x-editor": "text",
|
|
"default": "Private dining"
|
|
},
|
|
"title": {
|
|
"type": "string",
|
|
"title": "Room name",
|
|
"x-editor": "text",
|
|
"default": ""
|
|
},
|
|
"description": {
|
|
"type": "string",
|
|
"title": "Description",
|
|
"description": "Room description and what the experience includes.",
|
|
"x-editor": "richtext",
|
|
"default": ""
|
|
},
|
|
"image": {
|
|
"type": "string",
|
|
"title": "Room image",
|
|
"x-editor": "media",
|
|
"default": ""
|
|
},
|
|
"seats": {
|
|
"type": "string",
|
|
"title": "Seats",
|
|
"description": "e.g. 'Seats 2 to 14'.",
|
|
"x-editor": "text",
|
|
"default": ""
|
|
},
|
|
"minimum": {
|
|
"type": "string",
|
|
"title": "Minimum spend",
|
|
"description": "e.g. 'From $2,400'.",
|
|
"x-editor": "text",
|
|
"default": ""
|
|
},
|
|
"enquireLabel": {
|
|
"type": "string",
|
|
"title": "Enquire label",
|
|
"x-editor": "text",
|
|
"default": "Enquire"
|
|
},
|
|
"enquireUrl": {
|
|
"type": "string",
|
|
"title": "Enquire URL",
|
|
"x-editor": "link",
|
|
"default": ""
|
|
},
|
|
"mediaPosition": {
|
|
"type": "string",
|
|
"title": "Image side",
|
|
"enum": ["left", "right"],
|
|
"x-editor": "select",
|
|
"default": "left"
|
|
}
|
|
}
|
|
}
|