diff --git a/app.js b/app.js index 8aa8223..3400efa 100644 --- a/app.js +++ b/app.js @@ -921,6 +921,14 @@ app.get("/.well-known/did.json", (req, res) => { }) }) +// static files +app.get("/privacy-policy", (req, res) => { + res.sendFile(__dirname + "/public/privacy-policy.html") +}) + + +//general + app.get("*", (req, res) => { res.status(404).send({ message: "Route not found" }); }); diff --git a/public/privacy-policy.html b/public/privacy-policy.html new file mode 100644 index 0000000..a6b8aef --- /dev/null +++ b/public/privacy-policy.html @@ -0,0 +1,56 @@ + + + +
+ + +Last updated: 09/15/2024
+ +We do not collect health, financial and payment information, authentication, personal communications, location, + network + history, + user activity, website content information or other types of personally identifiable information other than your + Bluesky profile (including handle and user ID)
+ +1. We do not sell or transfer user data to third parties, outside of the approved use cases.
+2. We do not use or transfer user data for purposes that are unrelated to the item's single + purpose. +
+ +We may update our Privacy Policy from time to time. Thus, we advise you to review this page + periodically for any changes. We will notify you of any changes by posting the new Privacy + Policy on this page.
+The extension project is entirely open source. You can view the backend and frontend by clicking on the links below:
+ + + + \ No newline at end of file