{"version":3,"sources":["webpack://aboelkassem-blog/./src/components/ContactPageTemplate/index.js","webpack://aboelkassem-blog/./src/templates/contact-page.js"],"names":["ContactPageTemplate","props","title","subtitle","className","propTypes","PropTypes","ContactPage","data","markdownRemark","frontmatter","metaTitle","metaDescription","Layout","Helmet","content","name","property","config","rel","href"],"mappings":"wPAIMA,EAAsB,SAACC,GAC3B,IAAQC,EAAoBD,EAApBC,MAAOC,EAAaF,EAAbE,SAEf,OAAO,2BAASC,UAAU,qBACxB,uBAAKA,UAAU,OACb,uBAAKA,UAAU,yBACb,sBAAIA,UAAU,0CAA0CF,GAExD,sBAAIE,UAAU,mCAAmCD,IAGnD,gBAAC,IAAD,SAKNH,EAAoBK,UAAY,CAC9BH,MAAOI,WACPH,SAAUG,YAGZ,QCjBMC,EAAc,SAAAN,GAClB,MAAuGA,EAA/FO,KAAQC,eAAkBC,YAAeR,EAAjD,EAAiDA,MAAOC,EAAxD,EAAwDA,SAAUQ,EAAlE,EAAkEA,UAAWC,EAA7E,EAA6EA,gBAE7E,OACE,gBAACC,EAAA,EAAD,KACE,gBAACC,EAAA,EAAD,KACE,6BAAQH,GACR,wBAAM,aAAW,eAAeI,QAAQ,6BACxC,wBAAM,aAAW,0BAA0BA,QAAQ,sjJAEnD,wBAAMC,KAAK,cAAcD,QAASH,IAElC,wBAAMK,SAAS,SAASF,QAAO,UAAKG,YAAL,cAE/B,wBAAMD,SAAS,WAAWF,QAASb,IAEnC,wBAAMe,SAAS,iBAAiBF,QAASH,IAEzC,wBAAMO,IAAI,YAAYC,KAAI,UAAKF,YAAL,eAG5B,gBAAC,EAAD,CACEhB,MAAOA,EACPC,SAAUA,EACVQ,UAAWA,EACXC,gBAAiBA,MAMzBL,EAAYF,UAAY,CACtBG,KAAMF,UAAgB,CACpBG,eAAgBH,UAAgB,CAC9BI,YAAaJ,UAAgB,CAC3BJ,MAAOI,WACPH,SAAUG,WACVK,UAAWL,WACXM,gBAAiBN,kBAMzB","file":"component---src-templates-contact-page-js-68fe8bce4b07ae6c7b88.js","sourcesContent":["import React from 'react'\nimport PropTypes from 'prop-types'\nimport { ContactForm } from '../forms'\n\nconst ContactPageTemplate = (props) => {\n const { title, subtitle } = props\n\n return \n \n \n {title}\n\n {subtitle}\n \n\n \n \n \n}\n\nContactPageTemplate.propTypes = {\n title: PropTypes.string,\n subtitle: PropTypes.string,\n}\n\nexport default ContactPageTemplate\n","import React from 'react'\nimport PropTypes from 'prop-types'\nimport { graphql } from 'gatsby'\nimport { Helmet } from 'react-helmet'\nimport config from '../../config'\nimport Layout from '../components/Layout'\nimport ContactPageTemplate from '../components/ContactPageTemplate'\n\nconst ContactPage = props => {\n const { data: { markdownRemark: { frontmatter: { title, subtitle, metaTitle, metaDescription } } } } = props\n\n return (\n \n \n {metaTitle}\n \n \n\n \n {/* Open Graph Tags */}\n \n\n \n\n \n\n \n \n\n \n \n )\n}\n\nContactPage.propTypes = {\n data: PropTypes.shape({\n markdownRemark: PropTypes.shape({\n frontmatter: PropTypes.shape({\n title: PropTypes.string,\n subtitle: PropTypes.string,\n metaTitle: PropTypes.string,\n metaDescription: PropTypes.string,\n }),\n }),\n }),\n}\n\nexport default ContactPage\n\nexport const contactPageQuery = graphql`\n query ContactPage($id: String!) {\n markdownRemark(id: { eq: $id }) {\n frontmatter {\n title\n subtitle\n metaTitle\n metaDescription\n }\n }\n }\n`\n"],"sourceRoot":""}