{"version":3,"sources":["webpack:///./src/components/content/gridicons.js","webpack:///./src/components/seo-component.js","webpack:///./src/pages/what.js"],"names":["GridIcons","className","SEO","description","lang","meta","title","site","useStaticQuery","metaDescription","siteMetadata","htmlAttributes","titleTemplate","name","content","property","author","concat","defaultProps","IndexPage","siteTitle","data","query","render","homeDescription","to","getStartedUrl"],"mappings":"4FAAA,yBAkCeA,IAhCG,kBAChB,6BACE,yBAAKC,UAAU,OACb,yBAAKA,UAAU,gCACb,uBAAGA,UAAU,eACb,gDAEF,yBAAKA,UAAU,gCACb,uBAAGA,UAAU,yBACb,0DAEF,yBAAKA,UAAU,gCACb,uBAAGA,UAAU,mBACb,kDAGJ,yBAAKA,UAAU,OACb,yBAAKA,UAAU,gCACb,uBAAGA,UAAU,aACb,gDAEF,yBAAKA,UAAU,gCACb,uBAAGA,UAAU,mBACb,uDAEF,yBAAKA,UAAU,gCACb,uBAAGA,UAAU,mBACb,iE,kCC7BR,0DAYA,SAASC,EAAT,GAAkD,IAAnCC,EAAkC,EAAlCA,YAAaC,EAAqB,EAArBA,KAAMC,EAAe,EAAfA,KAAMC,EAAS,EAATA,MAC9BC,EAASC,yBAAe,YAAxBD,KAcFE,EAAkBN,GAAeI,EAAKG,aAAaP,YAEzD,OACE,kBAAC,IAAD,CACEQ,eAAgB,CACdP,QAEFE,MAAOA,EACPM,cAAa,QAAUL,EAAKG,aAAaJ,MACzCD,KAAM,CACJ,CACEQ,KAAK,cACLC,QAASL,GAEX,CACEM,SAAS,WACTD,QAASR,GAEX,CACES,SAAS,iBACTD,QAASL,GAEX,CACEM,SAAS,UACTD,QAAQ,WAEV,CACED,KAAK,eACLC,QAAQ,WAEV,CACED,KAAK,kBACLC,QAASP,EAAKG,aAAaM,QAE7B,CACEH,KAAK,gBACLC,QAASR,GAEX,CACEO,KAAK,sBACLC,QAASL,IAEXQ,OAAOZ,KAKfH,EAAIgB,aAAe,CACjBd,KAAK,KACLC,KAAM,GACNF,YAAY,IAUCD,O,kCCvFf,gFAOMiB,EAAY,SAAC,GAAD,EAAGC,UAAH,EAAcC,KAAd,OAChB,kBAAC,cAAD,CACEC,MAAK,aAmBLC,OAAQ,SAAAF,GAAI,OACV,oCACE,kBAAC,IAAD,KAEE,kBAAC,IAAD,CAAKf,MAAOe,EAAKd,KAAKG,aAAaP,cAEnC,yBAAKF,UAAW,oBACd,4BAAKoB,EAAKd,KAAKG,aAAaP,aAE5B,6BACA,2BAAIkB,EAAKd,KAAKG,aAAac,iBAE3B,8BAQF,6BAASvB,UAAU,uBACjB,yBAAKA,UAAU,aACb,yBAAKA,UAAU,OACb,yBAAKA,UAAU,oDACb,wFACgE,OAUxE,kBAAC,IAAD,MACA,yBAAKA,UAAU,OACf,yBAAKA,UAAU,8BAA6B,6BAAK,6BACjD,kBAAC,OAAD,CAAMwB,GAAG,cAAcxB,UAAU,2BAAjC,+CACA,6BAAK,6BAFL,SAgJA,yBAAKA,UAAW,kBACd,yBAAKA,UAAU,aACb,yBAAKA,UAAW,2BACd,gDACA,iFACsDoB,EAAKd,KAAKG,aAAaJ,MAD7E,MAKF,yBAAKL,UAAW,UAMd,kBAAC,OAAD,CAAMwB,GAAIJ,EAAKd,KAAKG,aAAagB,eAAjC,oBAkBhBP,EAAUD,aAAe,CACvBE,UAAU,IAGGD","file":"component---src-pages-what-js-3e1fb4464354e2c5b3aa.js","sourcesContent":["import React from \"react\"\n\nconst GridIcons = () => (\n
\n
\n
\n \n
Privacy Ratings
\n
\n
\n \n
Policy Analysis & History
\n
\n
\n \n
Third Party Risk
\n
\n
\n
\n
\n \n
Data Collection
\n
\n
\n \n
Standards & Compliance
\n
\n
\n \n
Transparency, Safety & Trust
\n
\n
\n
\n)\nexport default GridIcons\n","/**\n * SEO component that queries for data with\n * Gatsby's useStaticQuery React hook\n *\n * See: https://www.gatsbyjs.org/docs/use-static-query/\n */\n\nimport React from \"react\"\nimport PropTypes from \"prop-types\"\nimport Helmet from \"react-helmet\"\nimport { useStaticQuery, graphql } from \"gatsby\"\n\nfunction SEO({ description, lang, meta, title }) {\n const { site } = useStaticQuery(\n graphql`\n query {\n site {\n siteMetadata {\n title\n description\n author\n }\n }\n }\n `\n )\n\n const metaDescription = description || site.siteMetadata.description\n\n return (\n \n )\n}\n\nSEO.defaultProps = {\n lang: `en`,\n meta: [],\n description: ``,\n}\n\nSEO.propTypes = {\n description: PropTypes.string,\n lang: PropTypes.string,\n meta: PropTypes.arrayOf(PropTypes.object),\n title: PropTypes.string.isRequired,\n}\n\nexport default SEO\n","import React from \"react\"\nimport PropTypes from \"prop-types\"\nimport { StaticQuery, graphql, Link } from \"gatsby\"\nimport Layout from \"../components/layout.js\"\nimport SEO from \"../components/seo-component.js\" \nimport GridIcons from \"../components/content/gridicons\" \n\nconst IndexPage = ({ siteTitle, data }) => (\n (\n <>\n \n \n \n\n
\n

{data.site.siteMetadata.description}

\n {/*

DataPolicyTrust gives your complex the opportunity to increase the percentage of happiness
and enjoyment of your staff and as a result, bring productivity to your workspace.

*/}\n
\n

{data.site.siteMetadata.homeDescription}

\n {/* {\"Dashboard\"} */}\n
\n {/* */}\n {/*
\n \n
*/}\n \n
\n\n
\n
\n
\n
\n

\n Monitoring privacy, policies, risks & trust of companies.{\" \"}\n

\n {/*

\n \n

*/}\n
\n
\n\n \n\n \n
\n


\n Learn More about How DataPolicyTrust Works?\n

\n\n
\n
\n
\n{/* \n
\n
\n
\n
\n
\n
\n \n
\n
\n\n
\n
\n

DPT is a free public service

\n

\n We help monitor the safety of the Internet when it comes\n to our shared data privacy. DPT is a free service for\n everyone with our AI-powered watchdog, guardian and\n sentinel to watch over the Internet and all good and bad\n actors who try to cause issues for people.\n

\n
\n
\n
\n
\n\n
\n
\n
\n
\n

You can Trust DPT!

\n

\n Unlike the past, with DPT, you don’t have to worry about\n us being creepy with your data as we don’t share your\n PII and browsing data like some others have been known\n to do.\n

\n
\n
\n\n
\n
\n \n
\n
\n
\n
\n\n
\n
\n
\n
\n \n
\n
\n\n
\n
\n

DPT is a free public service for people

\n

\n We help monitor the safety of the Internet when it comes\n to our shared data privacy. DPT is a free service for\n everyone with our AI-powered watchdog, guardian and\n sentinel to watch over the Internet and all good and bad\n actors who try to cause issues for people.\n

\n
\n
\n
\n
\n\n
\n
\n
\n
\n

We are better!

\n

\n We didn't think what was out there really was helping\n people. Unlike other solutions, with DPT, you don’t have\n to worry about subjective ratings, opinions or data that\n may be stale as we provide true monitoring & analytics\n as well as intelligence and reporting instead of just\n ‘review’ tools.\n

\n
\n
\n\n
\n
\n \n
\n
\n
\n
\n\n
\n
\n
\n
\n \n
\n
\n\n
\n
\n

\n Simple & transparent data protection insights on the\n Internet\n

\n

\n Discard traditional ways to review privacy, security and\n other policy information about apps, products, services\n and sites, and try new ways to review and monitor them\n in DataPolicyTrust easily.\n

\n
\n
\n
\n
\n
\n
*/}\n\n
\n
\n
\n

Sign up for free

\n

\n Sign up to start improving your digital world with {data.site.siteMetadata.title}.\n

\n
\n\n
\n {/* \n Sign Up\n */}\n \n Sign Up\n \n
\n
\n
\n
\n \n )}\n />\n)\n\nIndexPage.propTypes = {\n siteTitle: PropTypes.string,\n}\n\nIndexPage.defaultProps = {\n siteTitle: ``,\n}\n\nexport default IndexPage\n"],"sourceRoot":""}