From 4d557be84a5be68bb591b65b44a4be08c1d91848 Mon Sep 17 00:00:00 2001 From: samgildea Date: Sat, 17 Apr 2021 18:01:41 -0400 Subject: [PATCH 1/4] #49 updating schemas, changing use cases to solutions and styling future of solar section --- gatsby-config.js | 2 +- src/components/homepage/index-styles.js | 85 +++++-- src/components/homepage/index.js | 34 ++- src/pages/index.js | 18 ++ src/pages/{UseCases.js => solutions.js} | 0 src/schemas/Homepage.json | 320 +++++++++++++----------- src/vectors/renewable-tree-icon.svg | 20 ++ 7 files changed, 313 insertions(+), 166 deletions(-) rename src/pages/{UseCases.js => solutions.js} (100%) create mode 100644 src/vectors/renewable-tree-icon.svg diff --git a/gatsby-config.js b/gatsby-config.js index d7c2f4e..816016d 100644 --- a/gatsby-config.js +++ b/gatsby-config.js @@ -36,7 +36,7 @@ module.exports = { product_page: require("./src/schemas/product_page.json"), product: require("./src/schemas/product.json"), Process: require("./src/schemas/process.json"), - Homepage: require("./src/schemas/Homepage.json"), + homepage: require("./src/schemas/homepage.json"), use_cases_page: require("./src/schemas/use_cases_page.json"), use_case: require("./src/schemas/use_case.json"), }, diff --git a/src/components/homepage/index-styles.js b/src/components/homepage/index-styles.js index 9a4615d..91a26a5 100644 --- a/src/components/homepage/index-styles.js +++ b/src/components/homepage/index-styles.js @@ -8,18 +8,15 @@ import { import "../../style/colors" import colors from "../../style/colors" - export const HeroImage = styled.div` -position: absolute; -top: 0; -z-index: 0; -img { - - width: 100vw; - height: 100vh; - object-fit: cover; - -} + position: absolute; + top: 0; + z-index: 0; + img { + width: 100vw; + height: 100vh; + object-fit: cover; + } ` export const HeroContainer = styled.div` @@ -67,13 +64,10 @@ export const FutureSection = styled.div` position: relative; padding-top: 64px; - @media (min-width: ${dimensions.maxwidthTablet}px) { display: flex; align-items: center; padding-top: 0px; - - } ` @@ -132,7 +126,66 @@ export const FutureCTA = styled.div` ` export const HomePageContainer = styled.div` -position: relative; -z-index: 0; + position: relative; + z-index: 0; +` + +export const SolutionsSection = styled.div` + height: 100vh; + margin-top: 100px; + color: ${colors.blue900}; + padding-bottom: 100px; ` + +export const SolutionsCard = styled.div` + a { + text-decoration: none; + color: ${colors.blue900}; + } + @media (max-width: ${dimensions.maxwidthTablet}px) { + img { + width: 100%; + object-fit: cover; + } + + margin-bottom: 48px; + margin-top: 48px; + } + @media (min-width: ${dimensions.maxwidthTablet}px) { + img { + width: 25vw; + height: 248px; + + object-fit: cover; + } + } + + text-align: center; +` + +export const SolutionsCards = styled.div` + @media (min-width: ${dimensions.maxwidthTablet}px) { + display: flex; + justify-content: space-between; + } +` + +export const SolutionsCTA = styled.div` +margin-top: 64px; +display: flex; +justify-content: center; + +a { + padding-right: 60px; + padding-left: 60px; + padding-top: 16px; + padding-bottom: 16px; + border: solid ${colors.orange900}; 1px; + font-size: 16px; + font-weight: bold; + text-decoration: none; + text-transform: uppercase; + color: ${colors.orange900}; +} +` diff --git a/src/components/homepage/index.js b/src/components/homepage/index.js index fb7ed1c..465aa09 100644 --- a/src/components/homepage/index.js +++ b/src/components/homepage/index.js @@ -1,5 +1,5 @@ import React from "react" -import { H1, P, H2 } from "../../style/type-styles" +import { H1, P, H2, H3 } from "../../style/type-styles" import { HeroContainer, HeroTextSection, @@ -15,8 +15,14 @@ import { FutureImage, HomePageContainer, HeroImage, + SolutionsSection, + SolutionsCard, + SolutionsCards, + SolutionsCTA, } from "./index-styles" +import TreeIcon from "../../vectors/renewable-tree-icon.svg" + import { Helmet } from "react-helmet" export default function HomePage({ data }) { @@ -65,6 +71,32 @@ export default function HomePage({ data }) { + + + +

{data.solutions_header}

+ + + {data.use_cases.map((use_case, idx) => { + return ( + + + +

{use_case.use_case.document.data.preview_title}

+
+
+ ) + })} +
+ + + + View use cases + {" "} + +
) diff --git a/src/pages/index.js b/src/pages/index.js index 220a5e0..96292ad 100644 --- a/src/pages/index.js +++ b/src/pages/index.js @@ -70,6 +70,24 @@ export const query = graphql` target } sign_up_button_text + solutions_header + use_cases { + use_case { + document { + ... on PrismicUseCase { + id + url + uid + data { + preview_title + preview_image { + url + } + } + } + } + } + } } } } diff --git a/src/pages/UseCases.js b/src/pages/solutions.js similarity index 100% rename from src/pages/UseCases.js rename to src/pages/solutions.js diff --git a/src/schemas/Homepage.json b/src/schemas/Homepage.json index b901d4f..3ea2daf 100644 --- a/src/schemas/Homepage.json +++ b/src/schemas/Homepage.json @@ -1,153 +1,177 @@ { - "Main" : { }, - "Hero Section" : { - "hero_headline" : { - "type" : "Text", - "config" : { - "label" : "Hero Headline" - } - }, - "hero_subtext" : { - "type" : "Text", - "config" : { - "label" : "Hero Subtext" - } - }, - "hero_cta_text" : { - "type" : "Text", - "config" : { - "label" : "Hero Button Text" - } - }, - "hero_button_destination" : { - "type" : "Link", - "config" : { - "label" : "Hero Button Destination" - } - }, - "hero_background_image" : { - "type" : "Image", - "config" : { - "constraint" : { }, - "thumbnails" : [ ], - "label" : "Hero Background Image" - } - } - }, - "Intro to Solar" : { - "section_title" : { - "type" : "Text", - "config" : { - "label" : "Section title" - } - }, - "section_description" : { - "type" : "Text", - "config" : { - "label" : "Section Description" - } - }, - "button_text" : { - "type" : "Text", - "config" : { - "label" : "Button Text" - } - }, - "button_destination" : { - "type" : "Link", - "config" : { - "label" : "Button Destination" - } - }, - "section_image" : { - "type" : "Image", - "config" : { - "constraint" : { }, - "thumbnails" : [ ], - "label" : "Section Image" - } - } - }, - "Impact Section" : { - "impact_section_title" : { - "type" : "Text", - "config" : { - "label" : "Impact Section Title" - } - }, - "impact_description" : { - "type" : "Text", - "config" : { - "label" : "Impact Description" - } - }, - "impact_image" : { - "type" : "Image", - "config" : { - "constraint" : { }, - "thumbnails" : [ ], - "label" : "Impact Image" - } - }, - "impact_example" : { - "type" : "Group", - "config" : { - "fields" : { - "impact_example_image" : { - "type" : "Image", - "config" : { - "constraint" : { }, - "thumbnails" : [ ], - "label" : "Impact Example Image" - } - }, - "impact_big_text" : { - "type" : "Text", - "config" : { - "label" : "Impact Big Text" - } - }, - "impact_small_text" : { - "type" : "Text", - "config" : { - "label" : "Impact Small Text" - } + "Main": {}, + "Hero Section": { + "hero_headline": { + "type": "Text", + "config": { + "label": "Hero Headline" + } + }, + "hero_subtext": { + "type": "Text", + "config": { + "label": "Hero Subtext" + } + }, + "hero_cta_text": { + "type": "Text", + "config": { + "label": "Hero Button Text" + } + }, + "hero_button_destination": { + "type": "Link", + "config": { + "label": "Hero Button Destination" + } + }, + "hero_background_image": { + "type": "Image", + "config": { + "constraint": {}, + "thumbnails": [], + "label": "Hero Background Image" + } + } + }, + "Intro to Solar": { + "section_title": { + "type": "Text", + "config": { + "label": "Section title" + } + }, + "section_description": { + "type": "Text", + "config": { + "label": "Section Description" + } + }, + "button_text": { + "type": "Text", + "config": { + "label": "Button Text" + } + }, + "button_destination": { + "type": "Link", + "config": { + "label": "Button Destination" + } + }, + "section_image": { + "type": "Image", + "config": { + "constraint": {}, + "thumbnails": [], + "label": "Section Image" + } + } + }, + "Impact Section": { + "impact_section_title": { + "type": "Text", + "config": { + "label": "Impact Section Title" + } + }, + "impact_description": { + "type": "Text", + "config": { + "label": "Impact Description" + } + }, + "impact_image": { + "type": "Image", + "config": { + "constraint": {}, + "thumbnails": [], + "label": "Impact Image" + } + }, + "impact_example": { + "type": "Group", + "config": { + "fields": { + "impact_example_image": { + "type": "Image", + "config": { + "constraint": {}, + "thumbnails": [], + "label": "Impact Example Image" + } + }, + "impact_big_text": { + "type": "Text", + "config": { + "label": "Impact Big Text" } }, - "label" : "Impact Example" - } - } - }, - "Email Section" : { - "email_eyebrow_heading" : { - "type" : "Text", - "config" : { - "label" : "Email Eyebrow Heading" - } - }, - "enter_email_label" : { - "type" : "Text", - "config" : { - "label" : "Enter Email Label" - } - }, - "email_description" : { - "type" : "Text", - "config" : { - "label" : "Email Description" - } - }, - "sign_up_button_text" : { - "type" : "Text", - "config" : { - "label" : "Sign Up Button Text" - } - }, - "sign_up_button_destination" : { - "type" : "Link", - "config" : { - "label" : "Sign up Button Destination" - } + "impact_small_text": { + "type": "Text", + "config": { + "label": "Impact Small Text" + } + } + }, + "label": "Impact Example" + } + } + }, + "Email Section": { + "email_eyebrow_heading": { + "type": "Text", + "config": { + "label": "Email Eyebrow Heading" + } + }, + "enter_email_label": { + "type": "Text", + "config": { + "label": "Enter Email Label" + } + }, + "email_description": { + "type": "Text", + "config": { + "label": "Email Description" + } + }, + "sign_up_button_text": { + "type": "Text", + "config": { + "label": "Sign Up Button Text" + } + }, + "sign_up_button_destination": { + "type": "Link", + "config": { + "label": "Sign Up Button Destination" + } + } + }, + "Solutions": { + "solutions_header": { + "type": "Text", + "config": { + "label": "Solutions Header" + } + }, + "use_cases": { + "type": "Group", + "config": { + "fields": { + "use_case" : { + "type" : "Link", + "config" : { + "select" : "document", + "customtypes" : [ "use_case" ], + "label" : "Use Case" + } + } + }, + "label": "Use Cases" } } - } \ No newline at end of file + } +} \ No newline at end of file diff --git a/src/vectors/renewable-tree-icon.svg b/src/vectors/renewable-tree-icon.svg new file mode 100644 index 0000000..75ed21b --- /dev/null +++ b/src/vectors/renewable-tree-icon.svg @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + From 0c1b767a76d68d0d7f2e0aa053895465a42d86d4 Mon Sep 17 00:00:00 2001 From: samgildea Date: Sat, 17 Apr 2021 19:06:48 -0400 Subject: [PATCH 2/4] #49 merging master and updating sun icon --- src/components/homepage/index.js | 2 +- src/schemas/Homepage.json | 250 ++++++++++++++++--------------- 2 files changed, 133 insertions(+), 119 deletions(-) diff --git a/src/components/homepage/index.js b/src/components/homepage/index.js index f94880b..67ed1e9 100644 --- a/src/components/homepage/index.js +++ b/src/components/homepage/index.js @@ -22,7 +22,7 @@ import { } from "./index-styles" import TreeIcon from "../../vectors/renewable-tree-icon.svg" - +import SunIcon from "../../vectors/sun-icon.svg" import { Helmet } from "react-helmet" export default function HomePage({ data }) { diff --git a/src/schemas/Homepage.json b/src/schemas/Homepage.json index 3ea2daf..d558a72 100644 --- a/src/schemas/Homepage.json +++ b/src/schemas/Homepage.json @@ -1,166 +1,172 @@ { - "Main": {}, - "Hero Section": { - "hero_headline": { - "type": "Text", - "config": { - "label": "Hero Headline" + "Main" : { }, + "Hero Section" : { + "hero_headline" : { + "type" : "Text", + "config" : { + "label" : "Hero Headline" } }, - "hero_subtext": { - "type": "Text", - "config": { - "label": "Hero Subtext" + "hero_subtext" : { + "type" : "Text", + "config" : { + "label" : "Hero Subtext" } }, - "hero_cta_text": { - "type": "Text", - "config": { - "label": "Hero Button Text" + "hero_cta_text" : { + "type" : "Text", + "config" : { + "label" : "Hero Button Text" } }, - "hero_button_destination": { - "type": "Link", - "config": { - "label": "Hero Button Destination" + "hero_button_destination" : { + "type" : "Link", + "config" : { + "label" : "Hero Button Destination" } }, - "hero_background_image": { - "type": "Image", - "config": { - "constraint": {}, - "thumbnails": [], - "label": "Hero Background Image" + "hero_background_image" : { + "type" : "Image", + "config" : { + "constraint" : { }, + "thumbnails" : [ ], + "label" : "Hero Background Image" } } }, - "Intro to Solar": { - "section_title": { - "type": "Text", - "config": { - "label": "Section title" + "Intro to Solar" : { + "section_title" : { + "type" : "Text", + "config" : { + "label" : "Section title" } }, - "section_description": { - "type": "Text", - "config": { - "label": "Section Description" + "section_description" : { + "type" : "Text", + "config" : { + "label" : "Section Description" } }, - "button_text": { - "type": "Text", - "config": { - "label": "Button Text" + "button_text" : { + "type" : "Text", + "config" : { + "label" : "Button Text" } }, - "button_destination": { - "type": "Link", - "config": { - "label": "Button Destination" + "button_destination" : { + "type" : "Link", + "config" : { + "label" : "Button Destination" } }, - "section_image": { - "type": "Image", - "config": { - "constraint": {}, - "thumbnails": [], - "label": "Section Image" + "section_image_alt" : { + "type" : "Text", + "config" : { + "label" : "section image alt" + } + }, + "section_image" : { + "type" : "Image", + "config" : { + "constraint" : { }, + "thumbnails" : [ ], + "label" : "Section Image" } } }, - "Impact Section": { - "impact_section_title": { - "type": "Text", - "config": { - "label": "Impact Section Title" - } - }, - "impact_description": { - "type": "Text", - "config": { - "label": "Impact Description" - } - }, - "impact_image": { - "type": "Image", - "config": { - "constraint": {}, - "thumbnails": [], - "label": "Impact Image" - } - }, - "impact_example": { - "type": "Group", - "config": { - "fields": { - "impact_example_image": { - "type": "Image", - "config": { - "constraint": {}, - "thumbnails": [], - "label": "Impact Example Image" + "Impact Section" : { + "impact_section_title" : { + "type" : "Text", + "config" : { + "label" : "Impact Section Title" + } + }, + "impact_description" : { + "type" : "Text", + "config" : { + "label" : "Impact Description" + } + }, + "impact_image" : { + "type" : "Image", + "config" : { + "constraint" : { }, + "thumbnails" : [ ], + "label" : "Impact Image" + } + }, + "impact_example" : { + "type" : "Group", + "config" : { + "fields" : { + "impact_example_image" : { + "type" : "Image", + "config" : { + "constraint" : { }, + "thumbnails" : [ ], + "label" : "Impact Example Image" } }, - "impact_big_text": { - "type": "Text", - "config": { - "label": "Impact Big Text" + "impact_big_text" : { + "type" : "Text", + "config" : { + "label" : "Impact Big Text" } }, - "impact_small_text": { - "type": "Text", - "config": { - "label": "Impact Small Text" + "impact_small_text" : { + "type" : "Text", + "config" : { + "label" : "Impact Small Text" } } }, - "label": "Impact Example" + "label" : "Impact Example" } } }, - "Email Section": { - "email_eyebrow_heading": { - "type": "Text", - "config": { - "label": "Email Eyebrow Heading" + "Email Section" : { + "email_eyebrow_heading" : { + "type" : "Text", + "config" : { + "label" : "Email Eyebrow Heading" } }, - "enter_email_label": { - "type": "Text", - "config": { - "label": "Enter Email Label" + "enter_email_label" : { + "type" : "Text", + "config" : { + "label" : "Enter Email Label" } }, - "email_description": { - "type": "Text", - "config": { - "label": "Email Description" + "email_description" : { + "type" : "Text", + "config" : { + "label" : "Email Description" } }, - "sign_up_button_text": { - "type": "Text", - "config": { - "label": "Sign Up Button Text" + "sign_up_button_text" : { + "type" : "Text", + "config" : { + "label" : "Sign Up Button Text" } }, - "sign_up_button_destination": { - "type": "Link", - "config": { - "label": "Sign Up Button Destination" + "sign_up_button_destination" : { + "type" : "Link", + "config" : { + "label" : "Sign Up Button Destination" } } }, - "Solutions": { - "solutions_header": { - "type": "Text", - "config": { - "label": "Solutions Header" + "Solutions" : { + "solutions_header" : { + "type" : "Text", + "config" : { + "label" : "Solutions Header" } }, - "use_cases": { - "type": "Group", - "config": { - "fields": { + "use_cases" : { + "type" : "Group", + "config" : { + "fields" : { "use_case" : { "type" : "Link", "config" : { @@ -170,7 +176,15 @@ } } }, - "label": "Use Cases" + "label" : "Use Cases" + } + }, + "use" : { + "type" : "Link", + "config" : { + "select" : "document", + "customtypes" : [ "use_case" ], + "label" : "use" } } } From 910525b2a01f4cc6b20a134cb51f87835a40fbf5 Mon Sep 17 00:00:00 2001 From: samgildea Date: Wed, 21 Apr 2021 16:35:57 -0400 Subject: [PATCH 3/4] #49 updating alt --- src/components/homepage/index.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/homepage/index.js b/src/components/homepage/index.js index 67ed1e9..1d4cf56 100644 --- a/src/components/homepage/index.js +++ b/src/components/homepage/index.js @@ -86,6 +86,7 @@ export default function HomePage({ data }) { {use_case.use_case.document.data.preview_title}

{use_case.use_case.document.data.preview_title}

From 717bba567d75e99749dc22dc22694c161fde6f14 Mon Sep 17 00:00:00 2001 From: samgildea Date: Wed, 21 Apr 2021 16:37:09 -0400 Subject: [PATCH 4/4] #49 updating homepage schema --- src/schemas/Homepage.json | 368 +++++++++++++++++++------------------- 1 file changed, 184 insertions(+), 184 deletions(-) diff --git a/src/schemas/Homepage.json b/src/schemas/Homepage.json index d558a72..008ebde 100644 --- a/src/schemas/Homepage.json +++ b/src/schemas/Homepage.json @@ -1,191 +1,191 @@ { - "Main" : { }, - "Hero Section" : { - "hero_headline" : { - "type" : "Text", - "config" : { - "label" : "Hero Headline" - } - }, - "hero_subtext" : { - "type" : "Text", - "config" : { - "label" : "Hero Subtext" - } - }, - "hero_cta_text" : { - "type" : "Text", - "config" : { - "label" : "Hero Button Text" - } - }, - "hero_button_destination" : { - "type" : "Link", - "config" : { - "label" : "Hero Button Destination" - } - }, - "hero_background_image" : { - "type" : "Image", - "config" : { - "constraint" : { }, - "thumbnails" : [ ], - "label" : "Hero Background Image" - } - } - }, - "Intro to Solar" : { - "section_title" : { - "type" : "Text", - "config" : { - "label" : "Section title" - } - }, - "section_description" : { - "type" : "Text", - "config" : { - "label" : "Section Description" - } - }, - "button_text" : { - "type" : "Text", - "config" : { - "label" : "Button Text" - } - }, - "button_destination" : { - "type" : "Link", - "config" : { - "label" : "Button Destination" - } - }, - "section_image_alt" : { - "type" : "Text", - "config" : { - "label" : "section image alt" - } - }, - "section_image" : { - "type" : "Image", - "config" : { - "constraint" : { }, - "thumbnails" : [ ], - "label" : "Section Image" - } - } - }, - "Impact Section" : { - "impact_section_title" : { - "type" : "Text", - "config" : { - "label" : "Impact Section Title" - } - }, - "impact_description" : { - "type" : "Text", - "config" : { - "label" : "Impact Description" - } - }, - "impact_image" : { - "type" : "Image", - "config" : { - "constraint" : { }, - "thumbnails" : [ ], - "label" : "Impact Image" - } - }, - "impact_example" : { - "type" : "Group", - "config" : { - "fields" : { - "impact_example_image" : { - "type" : "Image", - "config" : { - "constraint" : { }, - "thumbnails" : [ ], - "label" : "Impact Example Image" + "Main" : { }, + "Hero Section" : { + "hero_headline" : { + "type" : "Text", + "config" : { + "label" : "Hero Headline" + } + }, + "hero_subtext" : { + "type" : "Text", + "config" : { + "label" : "Hero Subtext" + } + }, + "hero_cta_text" : { + "type" : "Text", + "config" : { + "label" : "Hero Button Text" + } + }, + "hero_button_destination" : { + "type" : "Link", + "config" : { + "label" : "Hero Button Destination" + } + }, + "hero_background_image" : { + "type" : "Image", + "config" : { + "constraint" : { }, + "thumbnails" : [ ], + "label" : "Hero Background Image" + } + } + }, + "Intro to Solar" : { + "section_title" : { + "type" : "Text", + "config" : { + "label" : "Section title" + } + }, + "section_description" : { + "type" : "Text", + "config" : { + "label" : "Section Description" + } + }, + "button_text" : { + "type" : "Text", + "config" : { + "label" : "Button Text" + } + }, + "button_destination" : { + "type" : "Link", + "config" : { + "label" : "Button Destination" + } + }, + "section_image_alt" : { + "type" : "Text", + "config" : { + "label" : "section image alt" + } + }, + "section_image" : { + "type" : "Image", + "config" : { + "constraint" : { }, + "thumbnails" : [ ], + "label" : "Section Image" + } + } + }, + "Impact Section" : { + "impact_section_title" : { + "type" : "Text", + "config" : { + "label" : "Impact Section Title" + } + }, + "impact_description" : { + "type" : "Text", + "config" : { + "label" : "Impact Description" + } + }, + "impact_image" : { + "type" : "Image", + "config" : { + "constraint" : { }, + "thumbnails" : [ ], + "label" : "Impact Image" + } + }, + "impact_example" : { + "type" : "Group", + "config" : { + "fields" : { + "impact_example_image" : { + "type" : "Image", + "config" : { + "constraint" : { }, + "thumbnails" : [ ], + "label" : "Impact Example Image" + } + }, + "impact_big_text" : { + "type" : "Text", + "config" : { + "label" : "Impact Big Text" + } + }, + "impact_small_text" : { + "type" : "Text", + "config" : { + "label" : "Impact Small Text" + } } }, - "impact_big_text" : { - "type" : "Text", - "config" : { - "label" : "Impact Big Text" + "label" : "Impact Example" + } + } + }, + "Email Section" : { + "email_eyebrow_heading" : { + "type" : "Text", + "config" : { + "label" : "Email Eyebrow Heading" + } + }, + "enter_email_label" : { + "type" : "Text", + "config" : { + "label" : "Enter Email Label" + } + }, + "email_description" : { + "type" : "Text", + "config" : { + "label" : "Email Description" + } + }, + "sign_up_button_text" : { + "type" : "Text", + "config" : { + "label" : "Sign Up Button Text" + } + }, + "sign_up_button_destination" : { + "type" : "Link", + "config" : { + "label" : "Sign Up Button Destination" + } + } + }, + "Solutions" : { + "solutions_header" : { + "type" : "Text", + "config" : { + "label" : "Solutions Header" + } + }, + "use_cases" : { + "type" : "Group", + "config" : { + "fields" : { + "use_case" : { + "type" : "Link", + "config" : { + "select" : "document", + "customtypes" : [ "use_case" ], + "label" : "Use Case" + } } }, - "impact_small_text" : { - "type" : "Text", - "config" : { - "label" : "Impact Small Text" - } - } - }, - "label" : "Impact Example" - } - } - }, - "Email Section" : { - "email_eyebrow_heading" : { - "type" : "Text", - "config" : { - "label" : "Email Eyebrow Heading" - } - }, - "enter_email_label" : { - "type" : "Text", - "config" : { - "label" : "Enter Email Label" - } - }, - "email_description" : { - "type" : "Text", - "config" : { - "label" : "Email Description" - } - }, - "sign_up_button_text" : { - "type" : "Text", - "config" : { - "label" : "Sign Up Button Text" - } - }, - "sign_up_button_destination" : { - "type" : "Link", - "config" : { - "label" : "Sign Up Button Destination" - } - } - }, - "Solutions" : { - "solutions_header" : { - "type" : "Text", - "config" : { - "label" : "Solutions Header" - } - }, - "use_cases" : { - "type" : "Group", - "config" : { - "fields" : { - "use_case" : { - "type" : "Link", - "config" : { - "select" : "document", - "customtypes" : [ "use_case" ], - "label" : "Use Case" - } - } - }, - "label" : "Use Cases" - } - }, - "use" : { - "type" : "Link", - "config" : { - "select" : "document", - "customtypes" : [ "use_case" ], - "label" : "use" + "label" : "Use Cases" + } + }, + "use" : { + "type" : "Link", + "config" : { + "select" : "document", + "customtypes" : [ "use_case" ], + "label" : "use" + } } } - } -} \ No newline at end of file + } \ No newline at end of file