-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomponent---src-pages-faq-js-bd6b0b31bb4b01922808.js.map
1 lines (1 loc) · 6.72 KB
/
component---src-pages-faq-js-bd6b0b31bb4b01922808.js.map
1
{"version":3,"sources":["webpack:///./src/components/faq/FAQLink.js","webpack:///./src/pages/faq.js"],"names":["FAQLink","post","section","title","children","to","className","slug","excerpt","length","substring","Spirit","small","defaultProps","pageQuery","FAQPage","data","location","imageUrl","getMetaImageUrls","type","description","image","headerDividerStyle","page","xl","h4"],"mappings":"iLAMMA,G,UAAU,SAAC,GAAuD,IAArDC,EAAoD,EAApDA,KAAMC,EAA8C,EAA9CA,QAASC,EAAqC,EAArCA,MAAOC,EAA8B,EAA9BA,SAAUC,EAAoB,EAApBA,GAAIC,EAAgB,EAAhBA,UACvCL,GAAsBA,EAAKM,KACvCJ,EAAQF,EAAOA,EAAKE,MAAQA,EAC5B,IAAMK,EAAUP,EACZA,EAAKO,QAAQC,OAAS,IAASR,EAAKO,QAAQE,UAAU,EAAG,KAAzD,MAAqET,EAAKO,QACxEJ,EAEN,OACI,0BAAME,UAAWA,GACb,wBAAKA,UAAcK,IAAOH,QAAZ,sBAA0CL,GACvDK,GAAW,uBAAGF,UAAcK,IAAOC,MAAZ,mCAAqDJ,MAIzFR,EAAQa,aAAe,CACnBP,UAAU,6CACVJ,QAAQ,OAgBGF,Q,wBCyCFc,GAFEC,UApEC,SAAC,GAAwB,IAAtBC,EAAqB,EAArBA,KAAMC,EAAe,EAAfA,SAIfC,EAAWC,YAAiB,OAElC,OACI,oCACI,kBAAC,IAAD,CACIH,KAAMA,EACNC,SAAUA,EACVG,KAAK,UACLjB,MAVD,kBAWCkB,YAVK,qFAWLC,MAAOJ,IAEX,kBAAC,IAAD,CAAQK,mBAAmB,UACvB,yBAAKjB,UAAU,0BACX,yBAAKA,UAAcK,IAAOa,KAAKC,GAAjB,4BACV,wBAAInB,UAAcK,IAAOe,GAAZ,UAAb,gCAGR,yBAAKpB,UAAcK,IAAOa,KAAKC,GAAjB,YACV,yBAAKnB,UAAU,iFACX,kBAAC,EAAD,CAASH,MAAM,6CAAf,uIAIA,kBAAC,EAAD,CAASA,MAAM,mDAAf,oGAIA,kBAAC,EAAD,CAASA,MAAM,uDAAf,iMAKA,kBAAC,EAAD,CAASA,MAAM,8DAAf,6dAKA,kBAAC,EAAD,CAAUA,MAAM,sDAAhB,2SA4BF","file":"component---src-pages-faq-js-bd6b0b31bb4b01922808.js","sourcesContent":["import React from 'react'\nimport PropTypes from 'prop-types'\nimport { Link } from 'gatsby'\n\nimport { Spirit } from '../../styles/spirit-styles'\n\nconst FAQLink = ({ post, section, title, children, to, className }) => {\n const url = post ? `/${section}/${post.slug}/` : to\n title = post ? post.title : title\n const excerpt = post ?\n post.excerpt.length > 200 ? `${post.excerpt.substring(0, 200)}...` : post.excerpt\n : children\n\n return (\n <span className={className}>\n <h4 className={`${Spirit.excerpt} link darkgrey fw5`}>{title}</h4>\n {excerpt && <p className={`${Spirit.small} ma0 f8 lh-copy middarkgrey mb6`}>{excerpt}</p>}\n </span>\n )\n}\nFAQLink.defaultProps = {\n className: `f5 db tdn mb6 faq-question bb b--whitegrey`,\n section: `faq`,\n}\n\nFAQLink.propTypes = {\n post: PropTypes.shape({\n title: PropTypes.string,\n slug: PropTypes.string,\n excerpt: PropTypes.string,\n }),\n section: PropTypes.string.isRequired,\n title: PropTypes.string,\n children: PropTypes.node,\n to: PropTypes.string,\n className: PropTypes.string,\n}\n\nexport default FAQLink\n","import React from 'react'\nimport PropTypes from 'prop-types'\nimport { graphql } from 'gatsby'\n\nimport { Spirit } from '../styles/spirit-styles'\nimport { FAQLink } from '../components/faq'\nimport { Layout } from '../components/common/layout'\nimport { MetaData, getMetaImageUrls } from '../components/common/meta'\n\nconst FAQPage = ({ data, location }) => {\n // Add meta title and description for this page here to overwrite the site meta data as set in the config\n const title = `FAQ - InspireUI`\n const description = `Answers to our most popular questions: billing, hosting, troubleshooting and more.`\n const imageUrl = getMetaImageUrls(`faq`)\n\n return (\n <>\n <MetaData\n data={data}\n location={location}\n type=\"website\"\n title={title}\n description={description}\n image={imageUrl}\n />\n <Layout headerDividerStyle=\"shadow\">\n <div className=\"bg-faq bb b--whitegrey\">\n <div className={`${Spirit.page.xl} pt-vw7 pt-vw1-ns pb-vw1`}>\n <h1 className={`${Spirit.h4} white`}>Frequently Asked Questions</h1>\n </div>\n </div>\n <div className={`${Spirit.page.xl} grid-12`}>\n <div className=\"bg-white shadow-2 br4 mt5 mt10-ns pa5 pa15-ns pt10-ns pb12-ns col-12 col-8-ns\">\n <FAQLink title=\"Does it include full source code package?\">\n Yes, you will get the full source code package and also the free Wordpress plugins (if the product require to connect via Rest API)\n </FAQLink>\n\n <FAQLink title=\" Can I release the app to both iOS and Android?\">\n Yes, as this is made by React Native framework which support to release for both iOS and Android\n </FAQLink>\n\n <FAQLink title=\"Will i get the free upgrade on next comming version\">\n Yes, you will get the free upgrade with more awesome features coming, please follow the change logs to see the detail update. You will get the notify email for new version update on stores.\n\n </FAQLink>\n\n <FAQLink title=\"What is difference between the MStore Pro and Expo version\">\n Basically the main difference is the Tools that we use to build the product, the features will be the same for both version, but the Pro version is more flexiblity to add more native library through XCode (iOS) and Android Studio. The Expo version is not include the ios & android folder but you can easier to upgrade the React Native and take advancetage from Expo SDK. \n For more information please refer to https://facebook.github.io/react-native/docs/getting-started.html\n </FAQLink>\n\n <FAQLink title=\"What is difference between the ListApp and ListPro\">\n Both apps are support for Listing Directory business and most of the features are the same, ListPro is only support the ListingPro template, and ListApp are support for following templates: Listable, MyListing and Listify (these wordpress template is sold separately and from other Authors)\n </FAQLink>\n </div>\n \n </div>\n </Layout>\n </>\n )\n}\n\nFAQPage.propTypes = {\n data: PropTypes.shape({\n site: PropTypes.shape({\n siteMetadata: PropTypes.shape({\n siteUrl: PropTypes.string.isRequired,\n title: PropTypes.string.isRequired,\n description: PropTypes.string.isRequired,\n }).isRequired,\n }).isRequired,\n }).isRequired,\n location: PropTypes.shape({\n pathname: PropTypes.string.isRequired,\n }).isRequired,\n}\n\nexport default FAQPage\n\nexport const pageQuery = graphql`\n query GhostFAQQuery {\n site {\n ...SiteMetaFields\n }\n }\n`\n"],"sourceRoot":""}