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:

+ +

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;