{"version":3,"sources":["webpack:///./src/components/LegalContent/styles.ts","webpack:///./src/components/LegalContent/index.tsx","webpack:///./src/templates/page.tsx"],"names":["Row","styled","BootstrapRow","theme","backgroundGray","Container","BootstrapContainer","background","Content","div","Image","img","ContentFooter","btn","colors","text","inverted","fontSize","medium","LegalContent","data","children","noGutters","src","dangerouslySetInnerHTML","__html","html","postQuery","Page","location","page","ghostPage","Meta","type","Helmet","codeinjection_styles","Layout","isHome"],"mappings":"+lCAIO,IAAMA,EAAMC,YAAOC,IAAPD,CAAH,KACM,qBAAGE,MAAkBC,kBAK9BC,EAAYJ,YAAOK,IAAPL,CAAH,KACA,qBAAGE,MAAkBI,cAO9BC,EAAUP,IAAOQ,IAAV,KAIPC,EAAQT,IAAOU,IAAV,KAKLC,EAAgBX,IAAOQ,IAAV,KACV,qBAAGN,MAAkBU,IAAIN,cAS5B,qBAAGJ,MAAkBW,OAAOC,KAAKC,YAC7B,qBAAGb,MAAkBc,SAASC,UCHzCH,EAAO,kZAUEI,EA3BM,SAAC,GAAD,IACnBC,EADmB,EACnBA,KADmB,EAEnBC,SAFmB,OAInB,kBAAC,EAAD,CAAKC,WAAS,GACZ,kBAAC,EAAD,KACE,kBAACd,EAAD,KACE,kBAACE,EAAD,CAAOa,IAAK,yBACZ,yBAAKC,wBAAyB,CAAEC,OAAQL,EAAKM,SAE/C,kBAACd,EAAD,KACE,kBAACF,EAAD,CAAOa,IAAK,2BACZ,uBAAGC,wBAAyB,CAAEC,OAAQV,SCcjCY,GAFEC,UAhBF,SAAC,GAA4C,IAA1CR,EAA0C,EAA1CA,KAAMS,EAAoC,EAApCA,SACdC,EAAOV,EAAKW,UAElB,OACE,oCACE,kBAACC,EAAA,EAAD,CAAUZ,KAAMA,EAAMS,SAAUA,EAAUI,KAAK,YAC/C,kBAACC,EAAA,EAAD,KACE,2BAAOD,KAAK,YAAZ,GAA2BH,EAAKK,uBAElC,kBAACC,EAAA,EAAD,CAAQC,QAAQ,GACd,kBAAC,EAAD,CAAcjB,KAAMA,EAAKW,eAQR","file":"component---src-templates-page-tsx-686eae143c142d139f8d.js","sourcesContent":["import styled from '@emotion/styled';\nimport BootstrapRow from 'react-bootstrap/Row';\nimport BootstrapContainer from 'react-bootstrap/Container';\n\nexport const Row = styled(BootstrapRow)`\n background-color: ${({ theme }) => theme.backgroundGray};\n padding-top: 9rem;\n padding-bottom: 9rem;\n`;\n\nexport const Container = styled(BootstrapContainer)`\n background-color: ${({ theme }) => theme.background};\n padding: 0;\n border: solid 1px #dedede;\n border-radius: 7px;\n box-shadow: 0 7px 40px 0 rgba(244, 244, 244, 0.5);\n`;\n\nexport const Content = styled.div`\n padding: 5.5rem 5rem;\n`;\n\nexport const Image = styled.img`\n margin-bottom: 3rem;\n height: 45px;\n`;\n\nexport const ContentFooter = styled.div`\n background: ${({ theme }) => theme.btn.background};\n padding: 3rem 2rem;\n border-radius: 7px;\n display: flex;\n flex-direction: column;\n justify-content: center;\n text-align: center;\n align-items: center;\n p {\n color: ${({ theme }) => theme.colors.text.inverted};\n font-size: ${({ theme }) => theme.fontSize.medium};\n }\n`;\n","import React, { ReactElement, ReactNode } from 'react';\nimport {\n Row,\n Container,\n Image,\n Content,\n ContentFooter,\n} from './styles';\ninterface ILegalContent {\n data: {\n codeinjection_styles: {};\n title: string;\n html: string;\n feature_image: string;\n };\n children?: ReactNode;\n}\n\nconst LegalContent = ({\n data,\n children,\n}: ILegalContent): ReactElement => (\n \n \n \n \n
\n \n \n \n

\n \n \n \n);\nconst text = `\nCopyright © 2020 Stackwalker LLC
\nOur mailing address is: OpenIDEO, 501 The Embarcadero, Pier 28 Annex, San Francisco, California 94105\n

\nYou're receiving this email because you have opted in through your Stackwalker.com profile or by following a Challenge.\n

\nWant to change how you receive these emails?\n
\nYou can update your preferences or unsubscribe from this list.`;\n\nexport default LegalContent;\n","import React, { ReactElement } from 'react';\nimport { graphql } from 'gatsby';\nimport { Helmet } from 'react-helmet';\nimport Layout from 'src/components/common/Layout';\nimport { MetaData } from 'src/components/common/Meta';\nimport LegalContent from 'src/components/LegalContent';\n/**\n * Single page (/:slug)\n *\n * This file renders a single page and loads all the content.\n *\n */\n\ninterface IPage {\n data: {\n ghostPage: {\n codeinjection_styles: {};\n title: string;\n html: string;\n feature_image: string;\n };\n };\n location: {\n pathname: string;\n };\n}\nconst Page = ({ data, location }: IPage): ReactElement => {\n const page = data.ghostPage;\n\n return (\n <>\n \n \n \n \n \n \n \n \n );\n};\n\nexport default Page;\n\nexport const postQuery = graphql`\n query($slug: String!) {\n ghostPage(slug: { eq: $slug }) {\n ...GhostPageFields\n }\n }\n`;\n"],"sourceRoot":""}