-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomponent---src-templates-practice-fields-page-js-9f85446cc55908050c7e.js.map
1 lines (1 loc) · 5.82 KB
/
component---src-templates-practice-fields-page-js-9f85446cc55908050c7e.js.map
1
{"version":3,"sources":["webpack:///./src/components/practiceFieldsTemplate/index.js","webpack:///./src/templates/practiceFields-page.js","webpack:///./src/components/Offerings/index.js"],"names":["PracticeFieldsTemplate","title","heading","offerings","description","meta_title","meta_description","testimonials","name","content","className","Offerings","gridItems","blurbs","pageQuery","practiceFields","frontmatter","data","markdownRemark","Layout","map","item","key","image","style","borderRadius","alt","src","align","text"],"mappings":"uMAqEeA,EAhEgB,SAAC,GAAD,IAC7BC,EAD6B,EAC7BA,MACAC,EAF6B,EAE7BA,QAEAC,GAJ6B,EAG7BC,YAH6B,EAI7BD,WACAE,EAL6B,EAK7BA,WACAC,EAN6B,EAM7BA,iBAN6B,EAO7BC,aAP6B,OAS7B,6BACE,kBAAC,IAAD,KACE,+BAAQF,GACR,0BAAMG,KAAK,cAAcC,QAASH,KAEpC,6BAASI,UAAU,qCACjB,yBAAKA,UAAU,aACb,yBAAKA,UAAU,aACb,yBAAKA,UAAU,WACb,yBAAKA,UAAU,4BACb,yBAAKA,UAAU,WACb,wBAAIA,UAAU,SACXT,SAQf,6BAASS,UAAU,6BACjB,yBAAKA,UAAU,aAEb,yBAAKA,UAAU,WACb,yBAAKA,UAAU,WACb,yBAAKA,UAAU,4BACb,yBAAKA,UAAU,WACb,6BACE,wBAAIA,UAAU,sCACXR,IAGL,kBAACS,EAAA,EAAD,CAAWC,UAAWT,EAAUU,iB,YCZnCC,GAFEC,UA1BQ,SAAC,GAAc,IAC5BC,EAD2B,EAAXC,KACKC,eAArBF,YAER,OACE,kBAACG,EAAA,EAAD,KACE,kBAAC,EAAD,CACElB,MAAOe,EAAYf,MACnBI,WAAYW,EAAYX,WACxBC,iBAAkBU,EAAYV,iBAC9BJ,QAASc,EAAYd,QACrBE,YAAaY,EAAYZ,YACzBD,UAAWa,EAAYb,UACvBI,aAAcS,EAAYT,iBAgBZ,e,kCClCtB,yBA4BeI,IAzBG,SAAC,GAAD,IAAGC,EAAH,EAAGA,UAAH,OAChB,yBAAKF,UAAU,wBACZE,EAAUQ,KAAI,SAAAC,GAAI,OACjB,yBAAKC,IAAKD,EAAKE,MAAOb,UAAU,cAAcc,MAAO,CAAEC,aAAc,QACnE,6BAASf,UAAU,WACjB,uBAAGA,UAAU,qBACX,yBAAKgB,IAAI,GAAGC,IAAKN,EAAKE,SAExB,wBAAIK,MAAM,UAAUP,EAAKpB,OACzB,2BAAIoB,EAAKQ","file":"component---src-templates-practice-fields-page-js-9f85446cc55908050c7e.js","sourcesContent":["import React from 'react'\r\nimport Helmet from 'react-helmet'\r\nimport Offerings from '../Offerings'\r\nimport PropTypes from 'prop-types'\r\n\r\nconst PracticeFieldsTemplate = ({\r\n title,\r\n heading,\r\n description,\r\n offerings,\r\n meta_title,\r\n meta_description,\r\n testimonials,\r\n}) => (\r\n <div>\r\n <Helmet>\r\n <title>{meta_title}</title>\r\n <meta name='description' content={meta_description} />\r\n </Helmet>\r\n <section className='hero is-primary is-bold is-medium'>\r\n <div className='hero-body'>\r\n <div className='container'>\r\n <div className='columns'>\r\n <div className='column is-10 is-offset-1'>\r\n <div className='section'>\r\n <h1 className='title'>\r\n {title}\r\n </h1>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </section>\r\n <section className='section section--gradient'>\r\n <div className='container'>\r\n\r\n <div className='section'>\r\n <div className='columns'>\r\n <div className='column is-10 is-offset-1'>\r\n <div className='content'>\r\n <div>\r\n <h3 className='has-text-weight-semibold is-size-2'>\r\n {heading}\r\n </h3>\r\n </div>\r\n <Offerings gridItems={offerings.blurbs} />\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </section>\r\n </div>\r\n)\r\n\r\nPracticeFieldsTemplate.propTypes = {\r\n title: PropTypes.string,\r\n meta_title: PropTypes.string,\r\n meta_description: PropTypes.string,\r\n heading: PropTypes.string,\r\n description: PropTypes.string,\r\n offerings: PropTypes.shape({\r\n blurbs: PropTypes.array,\r\n }),\r\n testimonials: PropTypes.array,\r\n\r\n}\r\n\r\nexport default PracticeFieldsTemplate\r\n","import React from 'react'\r\nimport PropTypes from 'prop-types'\r\nimport { graphql } from 'gatsby'\r\nimport PracticeFieldsTemplate from '../components/practiceFieldsTemplate'\r\nimport Layout from '../components/Layout'\r\n\r\nconst practiceFields = ({ data }) => {\r\n const { frontmatter } = data.markdownRemark\r\n\r\n return (\r\n <Layout>\r\n <PracticeFieldsTemplate\r\n title={frontmatter.title}\r\n meta_title={frontmatter.meta_title}\r\n meta_description={frontmatter.meta_description}\r\n heading={frontmatter.heading}\r\n description={frontmatter.description}\r\n offerings={frontmatter.offerings}\r\n testimonials={frontmatter.testimonials}\r\n />\r\n </Layout>\r\n )\r\n}\r\n\r\npracticeFields.propTypes = {\r\n data: PropTypes.shape({\r\n markdownRemark: PropTypes.shape({\r\n frontmatter: PropTypes.object,\r\n }),\r\n }),\r\n}\r\n\r\nexport default practiceFields\r\n\r\nexport const pageQuery = graphql`\r\n query practice($id: String!) {\r\n markdownRemark(id: { eq: $id }) {\r\n frontmatter {\r\n title\r\n meta_title\r\n meta_description\r\n heading\r\n description\r\n offerings {\r\n blurbs {\r\n title\r\n image\r\n text\r\n }\r\n }\r\n testimonials {\r\n author\r\n quote\r\n }\r\n }\r\n }\r\n }\r\n`","import React from 'react'\r\nimport PropTypes from 'prop-types'\r\n\r\nconst Offerings = ({ gridItems }) => (\r\n <div className='columns is-multiline'>\r\n {gridItems.map(item => (\r\n <div key={item.image} className='column is-6' style={{ borderRadius: '5px' }}>\r\n <section className='section'>\r\n <p className='has-text-centered'>\r\n <img alt='' src={item.image} />\r\n </p>\r\n <h1 align='center'>{item.title}</h1>\r\n <p>{item.text}</p>\r\n </section>\r\n </div>\r\n ))}\r\n </div>\r\n)\r\n\r\nOfferings.propTypes = {\r\n gridItems: PropTypes.arrayOf(\r\n PropTypes.shape({\r\n image: PropTypes.string,\r\n text: PropTypes.string,\r\n })\r\n ),\r\n}\r\n\r\nexport default Offerings\r\n"],"sourceRoot":""}