Skip to content

Commit

Permalink
Merge branch 'master' into #18-about-page-mission-section
Browse files Browse the repository at this point in the history
  • Loading branch information
samgildea committed May 7, 2021
2 parents ef97e4e + 69a9637 commit e922e6a
Show file tree
Hide file tree
Showing 22 changed files with 1,008 additions and 29 deletions.
9 changes: 5 additions & 4 deletions gatsby-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ module.exports = {
schemas: {
// all the schemas here
test: require("./src/schemas/test.json"),
faq: require("./src/schemas/faq.json"),
product_page: require("./src/schemas/product_page.json"),
product: require("./src/schemas/product.json"),
Process: require("./src/schemas/process.json"),
Expand All @@ -49,9 +50,9 @@ module.exports = {
resolve: "gatsby-plugin-react-svg",
options: {
rule: {
include: /vectors/ // See below to configure properly
}
}
}
include: /vectors/, // See below to configure properly
},
},
},
],
}
182 changes: 182 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1"
},
"dependencies": {
"@emotion/react": "^11.4.0",
"@emotion/styled": "^11.3.0",
"@walltowall/gatsby-source-prismic-schemas": "^1.1.0",
"gatsby": "^2.26.1",
"gatsby-background-image": "^1.5.0",
Expand Down
20 changes: 9 additions & 11 deletions src/components/contact/contact-styles.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import styled from "styled-components"
import styled from "@emotion/styled"
import colors from "../../style/colors"
import dimensions from "../../style/dimensions"

import { fontSizes } from "../../style/type-styles"
import {
layoutPaddingDesktop,
layoutPaddingMobile,
} from "../../style/variables"

export const ContactContainer = styled.div`
min-height: 100vh;
`
Expand All @@ -16,7 +16,6 @@ export const ContactForm = styled.div`
width: 100%;
@media (min-width: ${dimensions.maxwidthTablet}px) {
width: 36vw;
}
color: ${colors.blue900};
input {
Expand Down Expand Up @@ -49,7 +48,7 @@ export const ContactSection = styled.div`
export const ContactDescription = styled.div`
margin-bottom: 64px;
`
export const ContactButton = styled.button`
export const ContactButton = styled.a`
font-size: 16px;
padding-right: 60px;
padding-left: 60px;
Expand All @@ -60,6 +59,11 @@ export const ContactButton = styled.button`
color: ${colors.white900};
border: none;
transition: all 0.1s ease-in-out;
&:hover {
box-shadow: 0 0 46px -9px ${colors.orange900};
}
`

export const ContactImageSection = styled.div`
Expand All @@ -72,7 +76,6 @@ export const ContactImageSection = styled.div`
object-fit: cover;
}
@media (max-width: ${dimensions.maxwidthTablet}px) {
margin-right: -${layoutPaddingMobile};
Expand All @@ -83,9 +86,7 @@ export const ContactImageSection = styled.div`
height: 263px;
object-fit: cover;
}
}
`

export const SpecificContactInfo = styled.div`
Expand All @@ -108,7 +109,4 @@ export const AddressSection = styled.div`
margin-bottom: 110px;
`

export const UseCaseSection = styled.div`
`
export const UseCaseSection = styled.div``
18 changes: 18 additions & 0 deletions src/components/faq/faq-contact/FAQContact.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
import React from "react"
import { ContactButton } from "../../contact/contact-styles"
import { Banner, CTABackground, CTATitle } from "./FAQContact.styles"
export const FAQContact = ({
imageUrl,
ctaTitle,
ctaLabel,
ctaDestination,
}) => (
<>
<Banner imageUrl={imageUrl}>
<CTABackground>
<CTATitle>{ctaTitle}</CTATitle>
<ContactButton href={ctaDestination}>{ctaLabel}</ContactButton>
</CTABackground>
</Banner>
</>
)
41 changes: 41 additions & 0 deletions src/components/faq/faq-contact/FAQContact.styles.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
import styled from "@emotion/styled"
import colors from "../../../style/colors"
import dimensions from "../../../style/dimensions"
import { H3 } from "../../../style/type-styles"
import {
layoutPaddingDesktop,
layoutPaddingMobile,
} from "../../../style/variables"

export const Banner = styled.div`
box-sizing: border-box;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
background-image: url(${props => props.imageUrl});
width: 100vw;
padding: 40px 60px;
margin: -${layoutPaddingDesktop};
height: 70vh;
@media (max-width: ${dimensions.maxwidthMobile}px) {
height: 40vh;
margin: -${layoutPaddingMobile};
}
`

export const CTABackground = styled.div`
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
background-color: ${colors.white900};
`

export const CTATitle = styled(H3)`
color: ${colors.blue900};
`
Loading

0 comments on commit e922e6a

Please sign in to comment.