From 1655a7898e71b3889242f53bc259f5a5a45296dd Mon Sep 17 00:00:00 2001 From: Jeff Avallone Date: Thu, 3 Jan 2019 18:01:11 -0500 Subject: [PATCH] Adding 404 and privacy policy pages --- src/pages/404.js | 12 ++++++++++++ src/pages/privacy.js | 19 +++++++++++++++++++ 2 files changed, 31 insertions(+) create mode 100644 src/pages/404.js create mode 100644 src/pages/privacy.js diff --git a/src/pages/404.js b/src/pages/404.js new file mode 100644 index 0000000..c0688d0 --- /dev/null +++ b/src/pages/404.js @@ -0,0 +1,12 @@ +import React from 'react'; + +import Layout from 'components/Layout'; +import Message from 'components/Message'; + +const ErrorPage = () => + +

The page you have requrested could not be found.

+
+
; + +export default ErrorPage; diff --git a/src/pages/privacy.js b/src/pages/privacy.js new file mode 100644 index 0000000..4d0b5d3 --- /dev/null +++ b/src/pages/privacy.js @@ -0,0 +1,19 @@ +import React from 'react'; + +import Layout from 'components/Layout'; +import Message from 'components/Message'; + +const PrivacyPage = () => + +

Regexper and the tools used to create it are all open source. If you are concerned that the JavaScript being delivered is in any way malicious, please inspect the source in the GitLab repository.

+

There are two data collection tools integrated in the app. These tools are not used to collect personal information:

+
    +
  • Google Analytics is used to track browser usage data and application performance.
  • +
  • Sentry.io is a tool used to capture and report client-side JavaScript errors.
  • +
+

Regexper honors the browser “Do Not Track” setting and will not enable these data collection tools if that setting is enabled. Also, most popular ad blockers will prevent these tools from sending any tracking data. Disabling or blocking these data collection tools will not impact the performance of this app. The information collected by these tools is used to monitor application performance, determine browser support, and collect error reports.

+

Regexper is not supported by ad revenue or sales of any kind.

+
+
; + +export default PrivacyPage;