Skip to content

Commit

Permalink
feat: privacy policy
Browse files Browse the repository at this point in the history
  • Loading branch information
Nem-Tudo committed Sep 15, 2024
1 parent d00d63d commit 302ea11
Show file tree
Hide file tree
Showing 2 changed files with 64 additions and 0 deletions.
8 changes: 8 additions & 0 deletions app.js
Original file line number Diff line number Diff line change
Expand Up @@ -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" });
});
Expand Down
56 changes: 56 additions & 0 deletions public/privacy-policy.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Privacy Policy</title>
</head>

<body>
<h1>BetterBluesky Privacy Policy</h1>
<p>Last updated: 09/15/2024</p>

<h1>Information Collection and Use</h1>
<p>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)</p>

<h1>Data Usage</h1>
<ul>
<li>Personally Identifiable Information: We do not collect any personally identifiable information.
</li>
<li>Health Information: We do not collect any health information.</li>
<li>Financial and Payment Information: We do not collect any financial information.</li>
<li>Authentication Information: We do not collect any authentication information.</li>
<li>Personal Communications: We do not collect any personal communications.</li>
<li>Location: We do not collect any location information.</li>
<li>Web History: We do not collect any web history information.</li>
<li>User Activity: We do not collect any user activity data.</li>
<li>Website Content: We do not collect any content from the websites you visit.</li>
<li>Bluesky ID and identifier: Used in "bookmarks", "polls" and internal statistics.</li>
</ul>

<h1>Data Transfer and Sale</h1>
<h2>We follow these standards to ensure the protection of your privacy:</h2>

<p>1. We do not sell or transfer user data to third parties, outside of the approved use cases.</p>
<p>2. We do not use or transfer user data for purposes that are unrelated to the item's single
purpose.
</p>

<h1>Changes to This Privacy Policy</h1>
<p>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.</p>
<h1>Open Source</h1>
<p>The extension project is entirely open source. You can view the backend and frontend by clicking on the links below:</p>
<ul>
<li><a target="_blank" href="https://github.com/Nem-Tudo/betterbluesky_extension">Frontend</a></li>
<li><a target="_blank" href="https://github.com/Nem-Tudo/betterbluesky_api">Backend (API, Server)</a></li>
</ul>
</body>

</html>

0 comments on commit 302ea11

Please sign in to comment.