@diviops/mcp-server 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +228 -0
- package/dist/compatibility.d.ts +26 -0
- package/dist/compatibility.js +68 -0
- package/dist/index.d.ts +11 -0
- package/dist/index.js +1270 -0
- package/dist/schema-optimizer.d.ts +16 -0
- package/dist/schema-optimizer.js +65 -0
- package/dist/wp-cli.d.ts +33 -0
- package/dist/wp-cli.js +315 -0
- package/dist/wp-client.d.ts +41 -0
- package/dist/wp-client.js +92 -0
- package/package.json +50 -0
- package/templates/cards-flex.json +30 -0
- package/templates/cta-gradient.json +16 -0
- package/templates/features-blurbs.json +34 -0
- package/templates/hero-centered.json +26 -0
- package/templates/hero-marquee.json +35 -0
- package/templates/hero-split.json +28 -0
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "cta-gradient",
|
|
3
|
+
"description": "Call-to-action section with gradient background, centered heading, subtitle, and button.",
|
|
4
|
+
"customizable": ["gradient colors", "heading", "subtitle", "button text/colors", "font family"],
|
|
5
|
+
"markup": "<!-- wp:divi/section {\"module\":{\"decoration\":{\"background\":{\"desktop\":{\"value\":{\"gradient\":{\"enabled\":\"on\",\"direction\":\"135deg\",\"stops\":[{\"position\":0,\"color\":\"{{gradient_start}}\"},{\"position\":100,\"color\":\"{{gradient_end}}\"}]}}}},\"spacing\":{\"desktop\":{\"value\":{\"padding\":{\"top\":\"80px\",\"right\":\"\",\"bottom\":\"80px\",\"left\":\"\",\"syncVertical\":\"on\",\"syncHorizontal\":\"off\"}}}},\"layout\":{\"desktop\":{\"value\":{\"display\":\"block\"}}}}},\"builderVersion\":\"5.0.3\"} -->\n<!-- wp:divi/row {\"module\":{\"decoration\":{\"layout\":{\"desktop\":{\"value\":{\"display\":\"block\"}}}}},\"builderVersion\":\"5.0.3\"} -->\n<!-- wp:divi/column {\"module\":{\"advanced\":{\"type\":{\"desktop\":{\"value\":\"4_4\"}}},\"decoration\":{\"layout\":{\"desktop\":{\"value\":{\"display\":\"block\"}}}}},\"builderVersion\":\"5.0.3\"} -->\n<!-- wp:divi/text {\"module\":{\"decoration\":{\"spacing\":{\"desktop\":{\"value\":{\"margin\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"20px\",\"left\":\"\",\"syncVertical\":\"off\",\"syncHorizontal\":\"off\"}}}},\"layout\":{\"desktop\":{\"value\":{\"display\":\"block\"}}}}},\"content\":{\"decoration\":{\"headingFont\":{\"h2\":{\"font\":{\"desktop\":{\"value\":{\"family\":\"{{font_family}}\",\"weight\":\"700\",\"color\":\"#ffffff\",\"size\":\"48px\",\"lineHeight\":\"1.2em\"}},\"tablet\":{\"value\":{\"size\":\"36px\"}},\"phone\":{\"value\":{\"size\":\"28px\"}}}}},\"bodyFont\":{\"body\":{\"font\":{\"desktop\":{\"value\":{\"textAlign\":\"center\"}}}}}},\"innerContent\":{\"desktop\":{\"value\":\"\\u003ch2\\u003e{{heading_text}}\\u003c/h2\\u003e\"}}},\"builderVersion\":\"5.0.3\"} /-->\n<!-- wp:divi/text {\"module\":{\"decoration\":{\"sizing\":{\"desktop\":{\"value\":{\"maxWidth\":\"600px\"}}},\"spacing\":{\"desktop\":{\"value\":{\"margin\":{\"top\":\"\",\"right\":\"auto\",\"bottom\":\"\",\"left\":\"auto\",\"syncVertical\":\"off\",\"syncHorizontal\":\"on\"}}}},\"layout\":{\"desktop\":{\"value\":{\"display\":\"block\"}}}}},\"content\":{\"decoration\":{\"bodyFont\":{\"body\":{\"font\":{\"desktop\":{\"value\":{\"family\":\"{{font_family}}\",\"color\":\"rgba(255,255,255,0.85)\",\"size\":\"18px\",\"lineHeight\":\"1.8em\",\"textAlign\":\"center\"}}}}}},\"innerContent\":{\"desktop\":{\"value\":\"\\u003cp\\u003e{{subtitle_text}}\\u003c/p\\u003e\"}}},\"builderVersion\":\"5.0.3\"} /-->\n<!-- wp:divi/button {\"module\":{\"advanced\":{\"alignment\":{\"desktop\":{\"value\":\"center\"}}},\"decoration\":{\"spacing\":{\"desktop\":{\"value\":{\"margin\":{\"top\":\"30px\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"syncVertical\":\"off\",\"syncHorizontal\":\"off\"},\"padding\":{\"top\":\"14px\",\"bottom\":\"14px\",\"left\":\"30px\",\"right\":\"30px\",\"syncVertical\":\"on\",\"syncHorizontal\":\"on\"}}}},\"layout\":{\"desktop\":{\"value\":{\"display\":\"block\"}}}}},\"button\":{\"innerContent\":{\"desktop\":{\"value\":{\"text\":\"{{button_text}}\"}}},\"decoration\":{\"button\":{\"desktop\":{\"value\":{\"enable\":\"on\",\"icon\":{\"enable\":\"off\"}}}},\"font\":{\"font\":{\"desktop\":{\"value\":{\"color\":\"{{button_text_color}}\",\"family\":\"{{font_family}}\",\"weight\":\"700\"}}}},\"background\":{\"desktop\":{\"value\":{\"color\":\"{{button_bg_color}}\"}}},\"border\":{\"desktop\":{\"value\":{\"radius\":{\"topLeft\":\"10px\",\"topRight\":\"10px\",\"bottomLeft\":\"10px\",\"bottomRight\":\"10px\",\"sync\":\"on\"}}}}}},\"builderVersion\":\"5.0.3\"} /-->\n<!-- /wp:divi/column -->\n<!-- /wp:divi/row -->\n<!-- /wp:divi/section -->",
|
|
6
|
+
"variables": {
|
|
7
|
+
"gradient_start": "#6366f1",
|
|
8
|
+
"gradient_end": "#8b5cf6",
|
|
9
|
+
"font_family": "Inter",
|
|
10
|
+
"heading_text": "Ready to Get Started?",
|
|
11
|
+
"subtitle_text": "Your compelling call-to-action subtitle here.",
|
|
12
|
+
"button_text": "Get Started Now",
|
|
13
|
+
"button_text_color": "#6366f1",
|
|
14
|
+
"button_bg_color": "#ffffff"
|
|
15
|
+
}
|
|
16
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "features-blurbs",
|
|
3
|
+
"description": "3-column feature section with label, heading, and blurb cards with icons. Uses classic row/column layout.",
|
|
4
|
+
"customizable": ["background color", "label", "heading", "blurb titles/descriptions/icons", "accent color", "font family"],
|
|
5
|
+
"markup": "<!-- wp:divi/section {\"module\":{\"decoration\":{\"background\":{\"desktop\":{\"value\":{\"color\":\"{{bg_color}}\"}}},\"spacing\":{\"desktop\":{\"value\":{\"padding\":{\"top\":\"80px\",\"right\":\"\",\"bottom\":\"80px\",\"left\":\"\",\"syncVertical\":\"on\",\"syncHorizontal\":\"off\"}}}},\"layout\":{\"desktop\":{\"value\":{\"display\":\"block\"}}}}},\"builderVersion\":\"5.0.3\"} -->\n<!-- wp:divi/row {\"module\":{\"decoration\":{\"layout\":{\"desktop\":{\"value\":{\"display\":\"block\"}}}}},\"builderVersion\":\"5.0.3\"} -->\n<!-- wp:divi/column {\"module\":{\"advanced\":{\"type\":{\"desktop\":{\"value\":\"4_4\"}}},\"decoration\":{\"layout\":{\"desktop\":{\"value\":{\"display\":\"block\"}}}}},\"builderVersion\":\"5.0.3\"} -->\n<!-- wp:divi/text {\"module\":{\"decoration\":{\"layout\":{\"desktop\":{\"value\":{\"display\":\"block\"}}}}},\"content\":{\"decoration\":{\"bodyFont\":{\"body\":{\"font\":{\"desktop\":{\"value\":{\"family\":\"{{font_family}}\",\"weight\":\"700\",\"color\":\"{{accent_color}}\",\"size\":\"13px\",\"letterSpacing\":\"3px\",\"lineHeight\":\"1.5em\"}}}}}},\"innerContent\":{\"desktop\":{\"value\":\"\\u003cp style=\\u0022text-transform:uppercase;text-align:center\\u0022\\u003e{{label_text}}\\u003c/p\\u003e\"}}},\"builderVersion\":\"5.0.3\"} /-->\n<!-- wp:divi/text {\"module\":{\"decoration\":{\"spacing\":{\"desktop\":{\"value\":{\"margin\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"50px\",\"left\":\"\",\"syncVertical\":\"off\",\"syncHorizontal\":\"off\"}}}},\"layout\":{\"desktop\":{\"value\":{\"display\":\"block\"}}}}},\"content\":{\"decoration\":{\"headingFont\":{\"h2\":{\"font\":{\"desktop\":{\"value\":{\"family\":\"{{font_family}}\",\"weight\":\"700\",\"color\":\"{{heading_color}}\",\"size\":\"42px\",\"lineHeight\":\"1.2em\"}},\"tablet\":{\"value\":{\"size\":\"32px\"}},\"phone\":{\"value\":{\"size\":\"26px\"}}}}},\"bodyFont\":{\"body\":{\"font\":{\"desktop\":{\"value\":{\"textAlign\":\"center\"}}}}}},\"innerContent\":{\"desktop\":{\"value\":\"\\u003ch2\\u003e{{heading_text}}\\u003c/h2\\u003e\"}}},\"builderVersion\":\"5.0.3\"} /-->\n<!-- /wp:divi/column -->\n<!-- /wp:divi/row -->\n<!-- wp:divi/row {\"module\":{\"decoration\":{\"layout\":{\"desktop\":{\"value\":{\"display\":\"block\"}}}}},\"builderVersion\":\"5.0.3\"} -->\n<!-- wp:divi/column {\"module\":{\"advanced\":{\"type\":{\"desktop\":{\"value\":\"1_3\"}}},\"decoration\":{\"layout\":{\"desktop\":{\"value\":{\"display\":\"block\"}}}}},\"builderVersion\":\"5.0.3\"} -->\n<!-- wp:divi/blurb {\"imageIcon\":{\"innerContent\":{\"desktop\":{\"value\":{\"useIcon\":\"on\",\"icon\":{\"0\":\"{{icon_1_key}}\",\"unicode\":\"{{icon_1_unicode}}\",\"type\":\"fa\",\"weight\":\"{{icon_1_weight}}\"},\"animation\":\"off\"}}},\"advanced\":{\"color\":{\"desktop\":{\"value\":\"{{accent_color}}\"}},\"placement\":{\"desktop\":{\"value\":\"top\"}}}},\"module\":{\"decoration\":{\"layout\":{\"desktop\":{\"value\":{\"display\":\"block\"}}}}},\"title\":{\"innerContent\":{\"desktop\":{\"value\":{\"text\":\"{{blurb_1_title}}\"}}},\"decoration\":{\"font\":{\"font\":{\"desktop\":{\"value\":{\"family\":\"{{font_family}}\",\"weight\":\"700\",\"color\":\"{{heading_color}}\",\"size\":\"20px\",\"lineHeight\":\"1.4em\"}}}}}},\"content\":{\"innerContent\":{\"desktop\":{\"value\":\"\\u003cp\\u003e{{blurb_1_text}}\\u003c/p\\u003e\"}},\"decoration\":{\"bodyFont\":{\"body\":{\"font\":{\"desktop\":{\"value\":{\"color\":\"#555555\",\"lineHeight\":\"1.8em\"}}}}}}},\"builderVersion\":\"5.0.3\"} /-->\n<!-- /wp:divi/column -->\n<!-- wp:divi/column {\"module\":{\"advanced\":{\"type\":{\"desktop\":{\"value\":\"1_3\"}}},\"decoration\":{\"layout\":{\"desktop\":{\"value\":{\"display\":\"block\"}}}}},\"builderVersion\":\"5.0.3\"} -->\n<!-- wp:divi/blurb {\"imageIcon\":{\"innerContent\":{\"desktop\":{\"value\":{\"useIcon\":\"on\",\"icon\":{\"0\":\"{{icon_2_key}}\",\"unicode\":\"{{icon_2_unicode}}\",\"type\":\"fa\",\"weight\":\"{{icon_2_weight}}\"},\"animation\":\"off\"}}},\"advanced\":{\"color\":{\"desktop\":{\"value\":\"{{accent_color}}\"}},\"placement\":{\"desktop\":{\"value\":\"top\"}}}},\"module\":{\"decoration\":{\"layout\":{\"desktop\":{\"value\":{\"display\":\"block\"}}}}},\"title\":{\"innerContent\":{\"desktop\":{\"value\":{\"text\":\"{{blurb_2_title}}\"}}},\"decoration\":{\"font\":{\"font\":{\"desktop\":{\"value\":{\"family\":\"{{font_family}}\",\"weight\":\"700\",\"color\":\"{{heading_color}}\",\"size\":\"20px\",\"lineHeight\":\"1.4em\"}}}}}},\"content\":{\"innerContent\":{\"desktop\":{\"value\":\"\\u003cp\\u003e{{blurb_2_text}}\\u003c/p\\u003e\"}},\"decoration\":{\"bodyFont\":{\"body\":{\"font\":{\"desktop\":{\"value\":{\"color\":\"#555555\",\"lineHeight\":\"1.8em\"}}}}}}},\"builderVersion\":\"5.0.3\"} /-->\n<!-- /wp:divi/column -->\n<!-- wp:divi/column {\"module\":{\"advanced\":{\"type\":{\"desktop\":{\"value\":\"1_3\"}}},\"decoration\":{\"layout\":{\"desktop\":{\"value\":{\"display\":\"block\"}}}}},\"builderVersion\":\"5.0.3\"} -->\n<!-- wp:divi/blurb {\"imageIcon\":{\"innerContent\":{\"desktop\":{\"value\":{\"useIcon\":\"on\",\"icon\":{\"0\":\"{{icon_3_key}}\",\"unicode\":\"{{icon_3_unicode}}\",\"type\":\"fa\",\"weight\":\"{{icon_3_weight}}\"},\"animation\":\"off\"}}},\"advanced\":{\"color\":{\"desktop\":{\"value\":\"{{accent_color}}\"}},\"placement\":{\"desktop\":{\"value\":\"top\"}}}},\"module\":{\"decoration\":{\"layout\":{\"desktop\":{\"value\":{\"display\":\"block\"}}}}},\"title\":{\"innerContent\":{\"desktop\":{\"value\":{\"text\":\"{{blurb_3_title}}\"}}},\"decoration\":{\"font\":{\"font\":{\"desktop\":{\"value\":{\"family\":\"{{font_family}}\",\"weight\":\"700\",\"color\":\"{{heading_color}}\",\"size\":\"20px\",\"lineHeight\":\"1.4em\"}}}}}},\"content\":{\"innerContent\":{\"desktop\":{\"value\":\"\\u003cp\\u003e{{blurb_3_text}}\\u003c/p\\u003e\"}},\"decoration\":{\"bodyFont\":{\"body\":{\"font\":{\"desktop\":{\"value\":{\"color\":\"#555555\",\"lineHeight\":\"1.8em\"}}}}}}},\"builderVersion\":\"5.0.3\"} /-->\n<!-- /wp:divi/column -->\n<!-- /wp:divi/row -->\n<!-- /wp:divi/section -->",
|
|
6
|
+
"variables": {
|
|
7
|
+
"bg_color": "#ffffff",
|
|
8
|
+
"accent_color": "#6366f1",
|
|
9
|
+
"heading_color": "#0a0a2e",
|
|
10
|
+
"font_family": "Inter",
|
|
11
|
+
"label_text": "FEATURES",
|
|
12
|
+
"heading_text": "Why Choose Us",
|
|
13
|
+
"blurb_1_title": "Feature One",
|
|
14
|
+
"blurb_1_text": "Description of the first feature.",
|
|
15
|
+
"icon_1_key": "N",
|
|
16
|
+
"icon_1_unicode": "",
|
|
17
|
+
"icon_1_weight": "400",
|
|
18
|
+
"blurb_2_title": "Feature Two",
|
|
19
|
+
"blurb_2_text": "Description of the second feature.",
|
|
20
|
+
"icon_2_key": "x",
|
|
21
|
+
"icon_2_unicode": "",
|
|
22
|
+
"icon_2_weight": "900",
|
|
23
|
+
"blurb_3_title": "Feature Three",
|
|
24
|
+
"blurb_3_text": "Description of the third feature.",
|
|
25
|
+
"icon_3_key": "E",
|
|
26
|
+
"icon_3_unicode": "",
|
|
27
|
+
"icon_3_weight": "400"
|
|
28
|
+
},
|
|
29
|
+
"notes": [
|
|
30
|
+
"Blurb title MUST be object: {\"text\":\"Title\"} not plain string",
|
|
31
|
+
"Icon MUST be FA object: {\"0\":\"key\",\"unicode\":\"ode;\",\"type\":\"fa\",\"weight\":\"400\"}",
|
|
32
|
+
"Common icons: N=brain, x=pencil, E=thumbsup, Q=lightbulb, U=code, P=eye"
|
|
33
|
+
]
|
|
34
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "hero-centered",
|
|
3
|
+
"description": "Centered hero with background color/gradient, label, heading, subtitle, and CTA button",
|
|
4
|
+
"customizable": ["background color/gradient", "label text", "heading text", "subtitle text", "button text/colors", "spacing", "font family"],
|
|
5
|
+
"markup": "<!-- wp:divi/section {\"module\":{\"decoration\":{\"background\":{\"desktop\":{\"value\":{\"gradient\":{\"enabled\":\"on\",\"direction\":\"160deg\",\"stops\":[{\"position\":0,\"color\":\"{{bg_color_1}}\"},{\"position\":50,\"color\":\"{{bg_color_2}}\"},{\"position\":100,\"color\":\"{{bg_color_3}}\"}]}}}},\"spacing\":{\"desktop\":{\"value\":{\"padding\":{\"top\":\"100px\",\"right\":\"\",\"bottom\":\"100px\",\"left\":\"\",\"syncVertical\":\"on\",\"syncHorizontal\":\"off\"}}},\"tablet\":{\"value\":{\"padding\":{\"top\":\"60px\",\"right\":\"\",\"bottom\":\"60px\",\"left\":\"\",\"syncVertical\":\"on\",\"syncHorizontal\":\"off\"}}}},\"layout\":{\"desktop\":{\"value\":{\"display\":\"block\"}}}}},\"builderVersion\":\"5.0.3\"} -->\n<!-- wp:divi/row {\"module\":{\"decoration\":{\"layout\":{\"desktop\":{\"value\":{\"display\":\"block\"}}}}},\"builderVersion\":\"5.0.3\"} -->\n<!-- wp:divi/column {\"module\":{\"advanced\":{\"type\":{\"desktop\":{\"value\":\"4_4\"}}},\"decoration\":{\"layout\":{\"desktop\":{\"value\":{\"display\":\"block\"}}}}},\"builderVersion\":\"5.0.3\"} -->\n<!-- wp:divi/text {\"module\":{\"decoration\":{\"layout\":{\"desktop\":{\"value\":{\"display\":\"block\"}}}}},\"content\":{\"decoration\":{\"bodyFont\":{\"body\":{\"font\":{\"desktop\":{\"value\":{\"family\":\"{{font_family}}\",\"weight\":\"600\",\"color\":\"{{accent_color}}\",\"size\":\"14px\",\"letterSpacing\":\"3px\",\"lineHeight\":\"1.5em\"}}}}}},\"innerContent\":{\"desktop\":{\"value\":\"\\u003cp style=\\u0022text-transform:uppercase;text-align:center\\u0022\\u003e{{label_text}}\\u003c/p\\u003e\"}}},\"builderVersion\":\"5.0.3\"} /-->\n<!-- wp:divi/text {\"module\":{\"decoration\":{\"spacing\":{\"desktop\":{\"value\":{\"margin\":{\"top\":\"20px\",\"right\":\"\",\"bottom\":\"25px\",\"left\":\"\",\"syncVertical\":\"off\",\"syncHorizontal\":\"off\"}}}},\"layout\":{\"desktop\":{\"value\":{\"display\":\"block\"}}}}},\"content\":{\"decoration\":{\"headingFont\":{\"h1\":{\"font\":{\"desktop\":{\"value\":{\"family\":\"{{font_family}}\",\"weight\":\"800\",\"color\":\"#ffffff\",\"size\":\"68px\",\"letterSpacing\":\"-2px\",\"lineHeight\":\"1.05em\"}},\"tablet\":{\"value\":{\"size\":\"46px\",\"letterSpacing\":\"-1px\"}},\"phone\":{\"value\":{\"size\":\"34px\",\"letterSpacing\":\"0px\"}}}}},\"bodyFont\":{\"body\":{\"font\":{\"desktop\":{\"value\":{\"textAlign\":\"center\"}}}}}},\"innerContent\":{\"desktop\":{\"value\":\"\\u003ch1\\u003e{{heading_text}}\\u003c/h1\\u003e\"}}},\"builderVersion\":\"5.0.3\"} /-->\n<!-- wp:divi/text {\"module\":{\"decoration\":{\"spacing\":{\"desktop\":{\"value\":{\"margin\":{\"top\":\"\",\"right\":\"auto\",\"bottom\":\"50px\",\"left\":\"auto\",\"syncVertical\":\"off\",\"syncHorizontal\":\"on\"}}}},\"sizing\":{\"desktop\":{\"value\":{\"maxWidth\":\"640px\"}}},\"layout\":{\"desktop\":{\"value\":{\"display\":\"block\"}}}}},\"content\":{\"decoration\":{\"bodyFont\":{\"body\":{\"font\":{\"desktop\":{\"value\":{\"family\":\"{{font_family}}\",\"color\":\"{{subtitle_color}}\",\"size\":\"19px\",\"lineHeight\":\"1.8em\",\"textAlign\":\"center\"}},\"tablet\":{\"value\":{\"size\":\"17px\"}},\"phone\":{\"value\":{\"size\":\"16px\"}}}}}},\"innerContent\":{\"desktop\":{\"value\":\"\\u003cp\\u003e{{subtitle_text}}\\u003c/p\\u003e\"}}},\"builderVersion\":\"5.0.3\"} /-->\n<!-- wp:divi/button {\"module\":{\"advanced\":{\"alignment\":{\"desktop\":{\"value\":\"center\"}}},\"decoration\":{\"spacing\":{\"desktop\":{\"value\":{\"padding\":{\"top\":\"14px\",\"bottom\":\"14px\",\"left\":\"32px\",\"right\":\"32px\",\"syncVertical\":\"on\",\"syncHorizontal\":\"on\"}}}},\"layout\":{\"desktop\":{\"value\":{\"display\":\"block\"}}}}},\"button\":{\"innerContent\":{\"desktop\":{\"value\":{\"text\":\"{{button_text}}\"}}},\"decoration\":{\"button\":{\"desktop\":{\"value\":{\"enable\":\"on\",\"icon\":{\"enable\":\"off\"}}}},\"font\":{\"font\":{\"desktop\":{\"value\":{\"color\":\"{{button_text_color}}\",\"family\":\"{{font_family}}\",\"weight\":\"700\"}}}},\"background\":{\"desktop\":{\"value\":{\"color\":\"{{button_bg_color}}\"}}},\"border\":{\"desktop\":{\"value\":{\"radius\":{\"topLeft\":\"10px\",\"topRight\":\"10px\",\"bottomLeft\":\"10px\",\"bottomRight\":\"10px\",\"sync\":\"on\"}}}}}},\"builderVersion\":\"5.0.3\"} /-->\n<!-- /wp:divi/column -->\n<!-- /wp:divi/row -->\n<!-- /wp:divi/section -->",
|
|
6
|
+
"variables": {
|
|
7
|
+
"bg_color_1": "#0a0a2e",
|
|
8
|
+
"bg_color_2": "#12124a",
|
|
9
|
+
"bg_color_3": "#1a0a3e",
|
|
10
|
+
"accent_color": "#7c83ff",
|
|
11
|
+
"subtitle_color": "#a0a3d6",
|
|
12
|
+
"font_family": "Inter",
|
|
13
|
+
"label_text": "YOUR LABEL HERE",
|
|
14
|
+
"heading_text": "Your Heading Here",
|
|
15
|
+
"subtitle_text": "Your subtitle text here describing the value proposition.",
|
|
16
|
+
"button_text": "Get Started",
|
|
17
|
+
"button_text_color": "#ffffff",
|
|
18
|
+
"button_bg_color": "#6366f1"
|
|
19
|
+
},
|
|
20
|
+
"notes": [
|
|
21
|
+
"Button padding goes on module.decoration.spacing, NOT button.decoration.spacing",
|
|
22
|
+
"Button hover has a known Divi 5 bug — hardcoded CSS overrides padding on hover",
|
|
23
|
+
"Use unicode escapes for HTML in innerContent: \\u003cp\\u003e not <p>",
|
|
24
|
+
"Heading uses h1 tag in innerContent, styled via content.decoration.headingFont.h1"
|
|
25
|
+
]
|
|
26
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "hero-marquee",
|
|
3
|
+
"description": "Full-viewport hero with video background, dark overlay, subtitle, and continuously scrolling marquee text at the bottom. Requires minimal CSS for animation.",
|
|
4
|
+
"customizable": ["video url", "overlay gradient", "subtitle text", "marquee text segments", "accent color", "font family", "animation speed"],
|
|
5
|
+
"requires_css": true,
|
|
6
|
+
"css_note": "This template needs CSS for @keyframes animation, inline-flex, and white-space:nowrap. Place in section freeForm CSS or Code module.",
|
|
7
|
+
"css": ".hero-section::after{content:'';position:absolute;inset:0;background:linear-gradient(180deg,rgba(0,0,0,.3) 0%,rgba(0,0,0,.05) 40%,rgba(0,0,0,.7) 100%);z-index:1;pointer-events:none}\n.hero-section>.et_pb_row{position:relative;z-index:2}\n@keyframes mq{0%{transform:translateX(0)}100%{transform:translateX(-50%)}}\n.mq-scroll{display:inline-flex!important;animation:mq 30s linear infinite}\n.mq-scroll .et_pb_module{flex-shrink:0}\n.mq-scroll .et_pb_text_inner,.mq-scroll .et_pb_text_inner *{white-space:nowrap}",
|
|
8
|
+
"markup": "<!-- wp:divi/section {\"module\":{\"decoration\":{\"background\":{\"desktop\":{\"value\":{\"color\":\"#0a0a0a\",\"video\":{\"webm\":\"{{video_url}}\"}}}},\"spacing\":{\"desktop\":{\"value\":{\"padding\":{\"top\":\"0px\",\"right\":\"0px\",\"bottom\":\"0px\",\"left\":\"0px\",\"syncVertical\":\"on\",\"syncHorizontal\":\"on\"}}}},\"sizing\":{\"desktop\":{\"value\":{\"minHeight\":\"100vh\"}}},\"layout\":{\"desktop\":{\"value\":{\"display\":\"flex\",\"flexDirection\":\"column\",\"justifyContent\":\"flex-end\"}}},\"attributes\":{\"desktop\":{\"value\":{\"attributes\":[{\"id\":\"hs1\",\"name\":\"class\",\"value\":\"hero-section\",\"adminLabel\":\"class hero-section\",\"targetElement\":\"main\"}]}}}},\"meta\":{\"adminLabel\":{\"desktop\":{\"value\":\"Section Hero\"}}}},\"builderVersion\":\"5.0.3\",\"css\":{\"desktop\":{\"value\":{\"freeForm\":\"{{css}}\"}}}} -->\n<!-- wp:divi/row {\"module\":{\"advanced\":{\"flexColumnStructure\":{\"desktop\":{\"value\":\"equal-columns_1\"}}},\"decoration\":{\"layout\":{\"desktop\":{\"value\":{\"flexWrap\":\"nowrap\"}}},\"sizing\":{\"desktop\":{\"value\":{\"maxWidth\":\"100%\",\"width\":\"100%\"}}},\"spacing\":{\"desktop\":{\"value\":{\"padding\":{\"top\":\"0px\",\"right\":\"0px\",\"bottom\":\"0px\",\"left\":\"0px\",\"syncVertical\":\"on\",\"syncHorizontal\":\"on\"}}}}},\"meta\":{\"adminLabel\":{\"desktop\":{\"value\":\"Row One\"}}}},\"builderVersion\":\"5.0.3\"} -->\n<!-- wp:divi/column {\"module\":{\"decoration\":{\"sizing\":{\"desktop\":{\"value\":{\"flexType\":\"24_24\"}}}}},\"builderVersion\":\"5.0.3\"} -->\n<!-- wp:divi/text {\"module\":{\"decoration\":{\"spacing\":{\"desktop\":{\"value\":{\"padding\":{\"top\":\"40px\",\"bottom\":\"20px\",\"left\":\"20px\",\"right\":\"20px\",\"syncVertical\":\"off\",\"syncHorizontal\":\"on\"}}}}},\"meta\":{\"adminLabel\":{\"desktop\":{\"value\":\"Subtitle\"}}}},\"content\":{\"decoration\":{\"bodyFont\":{\"body\":{\"font\":{\"desktop\":{\"value\":{\"family\":\"{{font_family}}\",\"weight\":\"400\",\"color\":\"rgba(255,255,255,0.6)\",\"size\":\"15px\",\"letterSpacing\":\"4px\",\"lineHeight\":\"1.5em\",\"textAlign\":\"center\"}}}}}},\"innerContent\":{\"desktop\":{\"value\":\"\\u003cp style=\\u0022text-transform:uppercase\\u0022\\u003e{{subtitle_text}}\\u003c/p\\u003e\"}}},\"builderVersion\":\"5.0.3\"} /-->\n<!-- wp:divi/group {\"module\":{\"decoration\":{\"layout\":{\"desktop\":{\"value\":{\"display\":\"flex\",\"flexDirection\":\"row\"}}},\"overflow\":{\"desktop\":{\"value\":{\"overflow-x\":\"hidden\",\"overflow-y\":\"hidden\",\"x\":\"hidden\",\"y\":\"hidden\"}}},\"spacing\":{\"desktop\":{\"value\":{\"padding\":{\"top\":\"20px\",\"bottom\":\"60px\",\"left\":\"0px\",\"right\":\"0px\",\"syncVertical\":\"off\",\"syncHorizontal\":\"on\"}}}}},\"meta\":{\"adminLabel\":{\"desktop\":{\"value\":\"Group One (Track)\"}}}},\"builderVersion\":\"5.0.3\"} -->\n<!-- wp:divi/group {\"module\":{\"decoration\":{\"layout\":{\"desktop\":{\"value\":{\"display\":\"flex\",\"flexDirection\":\"row\",\"alignItems\":\"baseline\",\"flexWrap\":\"nowrap\"}}},\"attributes\":{\"desktop\":{\"value\":{\"attributes\":[{\"id\":\"mqs1\",\"name\":\"class\",\"value\":\"mq-scroll\",\"adminLabel\":\"class mq-scroll\",\"targetElement\":\"main\"}]}}}},\"meta\":{\"adminLabel\":{\"desktop\":{\"value\":\"Group Two (Scroll)\"}}}},\"builderVersion\":\"5.0.3\"} -->\n<!-- wp:divi/text {\"module\":{\"decoration\":{\"spacing\":{\"desktop\":{\"value\":{\"padding\":{\"left\":\"30px\",\"right\":\"30px\",\"syncHorizontal\":\"on\"}}}}},\"meta\":{\"adminLabel\":{\"desktop\":{\"value\":\"Main Text 1\"}}}},\"content\":{\"decoration\":{\"headingFont\":{\"h2\":{\"font\":{\"desktop\":{\"value\":{\"family\":\"{{font_family}}\",\"weight\":\"700\",\"color\":\"#ffffff\",\"size\":\"100px\",\"lineHeight\":\"1em\"}},\"tablet\":{\"value\":{\"size\":\"60px\"}},\"phone\":{\"value\":{\"size\":\"40px\"}}}}}},\"innerContent\":{\"desktop\":{\"value\":\"\\u003ch2\\u003e{{marquee_text_1}}\\u003c/h2\\u003e\"}}},\"builderVersion\":\"5.0.3\"} /-->\n<!-- wp:divi/text {\"module\":{\"decoration\":{\"spacing\":{\"desktop\":{\"value\":{\"padding\":{\"left\":\"20px\",\"right\":\"20px\",\"syncHorizontal\":\"on\"}}}}},\"meta\":{\"adminLabel\":{\"desktop\":{\"value\":\"Star 1\"}}}},\"content\":{\"decoration\":{\"headingFont\":{\"h2\":{\"font\":{\"desktop\":{\"value\":{\"family\":\"{{font_family}}\",\"weight\":\"700\",\"color\":\"{{accent_color}}\",\"size\":\"60px\",\"lineHeight\":\"1em\"}},\"tablet\":{\"value\":{\"size\":\"40px\"}},\"phone\":{\"value\":{\"size\":\"28px\"}}}}}},\"innerContent\":{\"desktop\":{\"value\":\"\\u003ch2\\u003e\\u2726\\u003c/h2\\u003e\"}}},\"builderVersion\":\"5.0.3\"} /-->\n<!-- wp:divi/text {\"module\":{\"decoration\":{\"spacing\":{\"desktop\":{\"value\":{\"padding\":{\"left\":\"30px\",\"right\":\"30px\",\"syncHorizontal\":\"on\"}}}}},\"meta\":{\"adminLabel\":{\"desktop\":{\"value\":\"Outline Text 1\"}}}},\"content\":{\"decoration\":{\"headingFont\":{\"h2\":{\"font\":{\"desktop\":{\"value\":{\"family\":\"{{font_family}}\",\"weight\":\"700\",\"color\":\"rgba(255,255,255,0.15)\",\"size\":\"100px\",\"lineHeight\":\"1em\"}},\"tablet\":{\"value\":{\"size\":\"60px\"}},\"phone\":{\"value\":{\"size\":\"40px\"}}}}}},\"innerContent\":{\"desktop\":{\"value\":\"\\u003ch2\\u003e{{marquee_text_2}}\\u003c/h2\\u003e\"}}},\"builderVersion\":\"5.0.3\"} /-->\n<!-- wp:divi/text {\"module\":{\"decoration\":{\"spacing\":{\"desktop\":{\"value\":{\"padding\":{\"left\":\"20px\",\"right\":\"20px\",\"syncHorizontal\":\"on\"}}}}},\"meta\":{\"adminLabel\":{\"desktop\":{\"value\":\"Star 2\"}}}},\"content\":{\"decoration\":{\"headingFont\":{\"h2\":{\"font\":{\"desktop\":{\"value\":{\"family\":\"{{font_family}}\",\"weight\":\"700\",\"color\":\"{{accent_color}}\",\"size\":\"60px\",\"lineHeight\":\"1em\"}},\"tablet\":{\"value\":{\"size\":\"40px\"}},\"phone\":{\"value\":{\"size\":\"28px\"}}}}}},\"innerContent\":{\"desktop\":{\"value\":\"\\u003ch2\\u003e\\u2726\\u003c/h2\\u003e\"}}},\"builderVersion\":\"5.0.3\"} /-->\n<!-- wp:divi/text {\"module\":{\"decoration\":{\"spacing\":{\"desktop\":{\"value\":{\"padding\":{\"left\":\"30px\",\"right\":\"30px\",\"syncHorizontal\":\"on\"}}}}},\"meta\":{\"adminLabel\":{\"desktop\":{\"value\":\"Main Text 2 (dup)\"}}}},\"content\":{\"decoration\":{\"headingFont\":{\"h2\":{\"font\":{\"desktop\":{\"value\":{\"family\":\"{{font_family}}\",\"weight\":\"700\",\"color\":\"#ffffff\",\"size\":\"100px\",\"lineHeight\":\"1em\"}},\"tablet\":{\"value\":{\"size\":\"60px\"}},\"phone\":{\"value\":{\"size\":\"40px\"}}}}}},\"innerContent\":{\"desktop\":{\"value\":\"\\u003ch2\\u003e{{marquee_text_1}}\\u003c/h2\\u003e\"}}},\"builderVersion\":\"5.0.3\"} /-->\n<!-- wp:divi/text {\"module\":{\"decoration\":{\"spacing\":{\"desktop\":{\"value\":{\"padding\":{\"left\":\"20px\",\"right\":\"20px\",\"syncHorizontal\":\"on\"}}}}},\"meta\":{\"adminLabel\":{\"desktop\":{\"value\":\"Star 3 (dup)\"}}}},\"content\":{\"decoration\":{\"headingFont\":{\"h2\":{\"font\":{\"desktop\":{\"value\":{\"family\":\"{{font_family}}\",\"weight\":\"700\",\"color\":\"{{accent_color}}\",\"size\":\"60px\",\"lineHeight\":\"1em\"}},\"tablet\":{\"value\":{\"size\":\"40px\"}},\"phone\":{\"value\":{\"size\":\"28px\"}}}}}},\"innerContent\":{\"desktop\":{\"value\":\"\\u003ch2\\u003e\\u2726\\u003c/h2\\u003e\"}}},\"builderVersion\":\"5.0.3\"} /-->\n<!-- wp:divi/text {\"module\":{\"decoration\":{\"spacing\":{\"desktop\":{\"value\":{\"padding\":{\"left\":\"30px\",\"right\":\"30px\",\"syncHorizontal\":\"on\"}}}}},\"meta\":{\"adminLabel\":{\"desktop\":{\"value\":\"Outline Text 2 (dup)\"}}}},\"content\":{\"decoration\":{\"headingFont\":{\"h2\":{\"font\":{\"desktop\":{\"value\":{\"family\":\"{{font_family}}\",\"weight\":\"700\",\"color\":\"rgba(255,255,255,0.15)\",\"size\":\"100px\",\"lineHeight\":\"1em\"}},\"tablet\":{\"value\":{\"size\":\"60px\"}},\"phone\":{\"value\":{\"size\":\"40px\"}}}}}},\"innerContent\":{\"desktop\":{\"value\":\"\\u003ch2\\u003e{{marquee_text_2}}\\u003c/h2\\u003e\"}}},\"builderVersion\":\"5.0.3\"} /-->\n<!-- wp:divi/text {\"module\":{\"decoration\":{\"spacing\":{\"desktop\":{\"value\":{\"padding\":{\"left\":\"20px\",\"right\":\"20px\",\"syncHorizontal\":\"on\"}}}}},\"meta\":{\"adminLabel\":{\"desktop\":{\"value\":\"Star 4 (dup)\"}}}},\"content\":{\"decoration\":{\"headingFont\":{\"h2\":{\"font\":{\"desktop\":{\"value\":{\"family\":\"{{font_family}}\",\"weight\":\"700\",\"color\":\"{{accent_color}}\",\"size\":\"60px\",\"lineHeight\":\"1em\"}},\"tablet\":{\"value\":{\"size\":\"40px\"}},\"phone\":{\"value\":{\"size\":\"28px\"}}}}}},\"innerContent\":{\"desktop\":{\"value\":\"\\u003ch2\\u003e\\u2726\\u003c/h2\\u003e\"}}},\"builderVersion\":\"5.0.3\"} /-->\n<!-- /wp:divi/group -->\n<!-- /wp:divi/group -->\n<!-- /wp:divi/column -->\n<!-- /wp:divi/row -->\n<!-- /wp:divi/section -->",
|
|
9
|
+
"variables": {
|
|
10
|
+
"video_url": "http://site.local/wp-content/uploads/video.webm",
|
|
11
|
+
"font_family": "Space Grotesk",
|
|
12
|
+
"accent_color": "#f5c518",
|
|
13
|
+
"subtitle_text": "Label \u00b7 Date \u00b7 Location",
|
|
14
|
+
"marquee_text_1": "Your Main Text Here",
|
|
15
|
+
"marquee_text_2": "Secondary Text 2026"
|
|
16
|
+
},
|
|
17
|
+
"structure": {
|
|
18
|
+
"Section": "video bg + freeForm CSS + class: hero-section",
|
|
19
|
+
"Row": "full width (100%), no padding",
|
|
20
|
+
"Column": "full width (flexType 24_24)",
|
|
21
|
+
"Subtitle": "Text module, VB-editable",
|
|
22
|
+
"Group One (Track)": "overflow:hidden, flex row",
|
|
23
|
+
"Group Two (Scroll)": "flex row, nowrap, baseline, class: mq-scroll — CSS overrides to inline-flex + animation",
|
|
24
|
+
"Text modules x8": "4 content items duplicated for seamless loop"
|
|
25
|
+
},
|
|
26
|
+
"notes": [
|
|
27
|
+
"Marquee needs exactly 2x duplicate content for seamless -50% loop",
|
|
28
|
+
"inline-flex is NOT available in VB — must be set via CSS",
|
|
29
|
+
"CSS can go in section freeForm (css.desktop.value.freeForm) or Code module",
|
|
30
|
+
"All text modules are VB-editable — change text directly in Visual Builder",
|
|
31
|
+
"video_url MUST be a direct .webm file URL (e.g. https://site.com/uploads/video.webm) — YouTube/Vimeo URLs will NOT work. This template maps to the webm field; for .mp4, modify the markup to use video.mp4 instead",
|
|
32
|
+
"Overlay uses ::after pseudo-element via CSS — not available natively in VB",
|
|
33
|
+
"Admin labels help identify modules in VB layer panel"
|
|
34
|
+
]
|
|
35
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "hero-split",
|
|
3
|
+
"description": "Split hero: text+buttons left, image right. Uses Group module for flex layout. Stacks vertically on tablet/phone.",
|
|
4
|
+
"customizable": ["background", "heading", "subtitle", "buttons", "image", "spacing", "responsive breakpoints"],
|
|
5
|
+
"markup": "<!-- wp:divi/section {\"module\":{\"decoration\":{\"background\":{\"desktop\":{\"value\":{\"gradient\":{\"enabled\":\"on\",\"direction\":\"160deg\",\"stops\":[{\"position\":0,\"color\":\"{{bg_color_1}}\"},{\"position\":50,\"color\":\"{{bg_color_2}}\"},{\"position\":100,\"color\":\"{{bg_color_3}}\"}]}}}},\"spacing\":{\"desktop\":{\"value\":{\"padding\":{\"top\":\"80px\",\"right\":\"\",\"bottom\":\"80px\",\"left\":\"\",\"syncVertical\":\"on\",\"syncHorizontal\":\"off\"}}},\"tablet\":{\"value\":{\"padding\":{\"top\":\"60px\",\"right\":\"\",\"bottom\":\"60px\",\"left\":\"\",\"syncVertical\":\"on\",\"syncHorizontal\":\"off\"}}}},\"layout\":{\"desktop\":{\"value\":{\"display\":\"block\"}}}}},\"builderVersion\":\"5.0.3\"} -->\n<!-- wp:divi/row {\"module\":{\"advanced\":{\"flexColumnStructure\":{\"desktop\":{\"value\":\"equal-columns_1\"}}},\"decoration\":{\"layout\":{\"desktop\":{\"value\":{\"flexWrap\":\"nowrap\"}}}}},\"builderVersion\":\"5.0.3\"} -->\n<!-- wp:divi/column {\"module\":{\"decoration\":{\"sizing\":{\"desktop\":{\"value\":{\"flexType\":\"24_24\"}}}}},\"builderVersion\":\"5.0.3\"} -->\n<!-- wp:divi/group {\"module\":{\"decoration\":{\"layout\":{\"desktop\":{\"value\":{\"display\":\"flex\",\"flexDirection\":\"row\",\"alignItems\":\"center\",\"gap\":\"60px\"}},\"tablet\":{\"value\":{\"flexDirection\":\"column\",\"gap\":\"40px\"}}},\"spacing\":{\"desktop\":{\"value\":{\"padding\":{\"top\":\"40px\",\"bottom\":\"40px\",\"left\":\"\",\"right\":\"\",\"syncVertical\":\"on\",\"syncHorizontal\":\"off\"}}}}}},\"builderVersion\":\"5.0.3\"} -->\n<!-- wp:divi/group {\"module\":{\"decoration\":{\"sizing\":{\"desktop\":{\"value\":{\"size\":[\"flexShrink\",\"flexGrow\"],\"maxWidth\":\"55%\"}},\"tablet\":{\"value\":{\"maxWidth\":\"100%\"}}},\"layout\":{\"desktop\":{\"value\":{\"display\":\"flex\",\"flexDirection\":\"column\",\"gap\":\"24px\"}}}}},\"builderVersion\":\"5.0.3\"} -->\n<!-- wp:divi/text {\"content\":{\"decoration\":{\"bodyFont\":{\"body\":{\"font\":{\"desktop\":{\"value\":{\"family\":\"{{font_family}}\",\"weight\":\"600\",\"color\":\"{{accent_color}}\",\"size\":\"13px\",\"letterSpacing\":\"3px\",\"lineHeight\":\"1.5em\"}}}}}},\"innerContent\":{\"desktop\":{\"value\":\"\\u003cp style=\\u0022text-transform:uppercase\\u0022\\u003e{{label_text}}\\u003c/p\\u003e\"}}},\"builderVersion\":\"5.0.3\"} /-->\n<!-- wp:divi/text {\"content\":{\"decoration\":{\"headingFont\":{\"h1\":{\"font\":{\"desktop\":{\"value\":{\"family\":\"{{font_family}}\",\"weight\":\"800\",\"color\":\"#ffffff\",\"size\":\"56px\",\"letterSpacing\":\"-2px\",\"lineHeight\":\"1.08em\"}},\"tablet\":{\"value\":{\"size\":\"42px\",\"letterSpacing\":\"-1px\"}},\"phone\":{\"value\":{\"size\":\"32px\",\"letterSpacing\":\"0px\"}}}}}},\"innerContent\":{\"desktop\":{\"value\":\"\\u003ch1\\u003e{{heading_text}}\\u003c/h1\\u003e\"}}},\"builderVersion\":\"5.0.3\"} /-->\n<!-- wp:divi/text {\"content\":{\"decoration\":{\"bodyFont\":{\"body\":{\"font\":{\"desktop\":{\"value\":{\"family\":\"{{font_family}}\",\"color\":\"{{subtitle_color}}\",\"size\":\"17px\",\"lineHeight\":\"1.8em\"}},\"tablet\":{\"value\":{\"size\":\"16px\"}}}}}},\"innerContent\":{\"desktop\":{\"value\":\"\\u003cp\\u003e{{subtitle_text}}\\u003c/p\\u003e\"}}},\"builderVersion\":\"5.0.3\"} /-->\n<!-- wp:divi/group {\"module\":{\"decoration\":{\"layout\":{\"desktop\":{\"value\":{\"display\":\"flex\",\"flexDirection\":\"row\",\"gap\":\"16px\",\"alignItems\":\"center\"}},\"phone\":{\"value\":{\"flexDirection\":\"column\"}}}}},\"builderVersion\":\"5.0.3\"} -->\n<!-- wp:divi/button {\"module\":{\"decoration\":{\"spacing\":{\"desktop\":{\"value\":{\"padding\":{\"top\":\"14px\",\"bottom\":\"14px\",\"left\":\"28px\",\"right\":\"28px\",\"syncVertical\":\"on\",\"syncHorizontal\":\"on\"}}}}}},\"button\":{\"innerContent\":{\"desktop\":{\"value\":{\"text\":\"{{primary_button_text}}\"}}},\"decoration\":{\"button\":{\"desktop\":{\"value\":{\"enable\":\"on\",\"icon\":{\"enable\":\"off\"}}}},\"font\":{\"font\":{\"desktop\":{\"value\":{\"color\":\"#ffffff\",\"family\":\"{{font_family}}\",\"weight\":\"700\"}}}},\"background\":{\"desktop\":{\"value\":{\"color\":\"{{accent_color}}\"}}},\"border\":{\"desktop\":{\"value\":{\"radius\":{\"topLeft\":\"10px\",\"topRight\":\"10px\",\"bottomLeft\":\"10px\",\"bottomRight\":\"10px\",\"sync\":\"on\"}}}}}},\"builderVersion\":\"5.0.3\"} /-->\n<!-- wp:divi/button {\"module\":{\"decoration\":{\"spacing\":{\"desktop\":{\"value\":{\"padding\":{\"top\":\"14px\",\"bottom\":\"14px\",\"left\":\"28px\",\"right\":\"28px\",\"syncVertical\":\"on\",\"syncHorizontal\":\"on\"}}}}}},\"button\":{\"innerContent\":{\"desktop\":{\"value\":{\"text\":\"{{secondary_button_text}}\"}}},\"decoration\":{\"button\":{\"desktop\":{\"value\":{\"enable\":\"on\",\"icon\":{\"enable\":\"off\"}}}},\"font\":{\"font\":{\"desktop\":{\"value\":{\"color\":\"{{subtitle_color}}\",\"family\":\"{{font_family}}\",\"weight\":\"600\"}}}},\"background\":{\"desktop\":{\"value\":{\"color\":\"transparent\"}}},\"border\":{\"desktop\":{\"value\":{\"radius\":{\"topLeft\":\"10px\",\"topRight\":\"10px\",\"bottomLeft\":\"10px\",\"bottomRight\":\"10px\",\"sync\":\"on\"},\"styles\":{\"all\":{\"width\":\"1px\",\"color\":\"rgba(160,163,214,0.3)\",\"style\":\"solid\"}}}}}}},\"builderVersion\":\"5.0.3\"} /-->\n<!-- /wp:divi/group -->\n<!-- /wp:divi/group -->\n<!-- wp:divi/group {\"module\":{\"decoration\":{\"sizing\":{\"desktop\":{\"value\":{\"size\":[\"flexShrink\"],\"maxWidth\":\"40%\"}},\"tablet\":{\"value\":{\"maxWidth\":\"70%\"}},\"phone\":{\"value\":{\"maxWidth\":\"100%\"}}},\"layout\":{\"desktop\":{\"value\":{\"display\":\"flex\",\"justifyContent\":\"center\",\"alignItems\":\"center\"}}}}},\"builderVersion\":\"5.0.3\"} -->\n<!-- wp:divi/image {\"module\":{\"decoration\":{\"border\":{\"desktop\":{\"value\":{\"radius\":{\"topLeft\":\"1.5rem\",\"topRight\":\"1.5rem\",\"bottomLeft\":\"1.5rem\",\"bottomRight\":\"1.5rem\",\"sync\":\"on\"}}}},\"boxShadow\":{\"desktop\":{\"value\":{\"style\":\"preset1\",\"vertical\":\"30px\",\"blur\":\"60px\",\"color\":\"rgba(99,102,241,0.3)\"}}}},\"advanced\":{\"sizing\":{\"desktop\":{\"value\":{\"size\":[\"flexShrink\"]}}}}},\"image\":{\"innerContent\":{\"desktop\":{\"value\":{\"src\":\"{{image_url}}\",\"alt\":\"{{image_alt}}\",\"titleText\":\"\"}}}},\"builderVersion\":\"5.0.3\"} /-->\n<!-- /wp:divi/group -->\n<!-- /wp:divi/group -->\n<!-- /wp:divi/column -->\n<!-- /wp:divi/row -->\n<!-- /wp:divi/section -->",
|
|
6
|
+
"variables": {
|
|
7
|
+
"bg_color_1": "#0a0a2e",
|
|
8
|
+
"bg_color_2": "#12124a",
|
|
9
|
+
"bg_color_3": "#1a0a3e",
|
|
10
|
+
"accent_color": "#6366f1",
|
|
11
|
+
"subtitle_color": "#a0a3d6",
|
|
12
|
+
"font_family": "Inter",
|
|
13
|
+
"label_text": "YOUR LABEL",
|
|
14
|
+
"heading_text": "Your Heading\\u003cbr\\u003eGoes Here",
|
|
15
|
+
"subtitle_text": "Subtitle description text.",
|
|
16
|
+
"primary_button_text": "Primary CTA",
|
|
17
|
+
"secondary_button_text": "Secondary CTA",
|
|
18
|
+
"image_url": "http://example.com/image.jpg",
|
|
19
|
+
"image_alt": "Hero image"
|
|
20
|
+
},
|
|
21
|
+
"notes": [
|
|
22
|
+
"Outer Group uses flexDirection:row with gap:60px, switches to column on tablet",
|
|
23
|
+
"Left Group takes 55% width, right Group takes 40% — remaining 5% is gap",
|
|
24
|
+
"Two buttons in a nested Group with flexDirection:row, stacks on phone",
|
|
25
|
+
"Image has box shadow for depth — adjust color to match accent",
|
|
26
|
+
"Secondary button uses transparent bg with subtle border"
|
|
27
|
+
]
|
|
28
|
+
}
|