diff options
| author | Christian Cleberg <[email protected]> | 2026-03-18 14:48:39 -0500 |
|---|---|---|
| committer | Christian Cleberg <[email protected]> | 2026-03-18 14:48:39 -0500 |
| commit | c52122cc8843d969a78a62a317e22a7838f0d20f (patch) | |
| tree | a892ad2c8e576461f2c72c318e57fc012dc70621 /website/privacy.html | |
| parent | e2ab3c439a74bdc2d55e983779ec0f1567999103 (diff) | |
| download | hutch-c52122cc8843d969a78a62a317e22a7838f0d20f.tar.gz hutch-c52122cc8843d969a78a62a317e22a7838f0d20f.tar.bz2 hutch-c52122cc8843d969a78a62a317e22a7838f0d20f.zip | |
add hutch website
Diffstat (limited to 'website/privacy.html')
| -rw-r--r-- | website/privacy.html | 120 |
1 files changed, 120 insertions, 0 deletions
diff --git a/website/privacy.html b/website/privacy.html new file mode 100644 index 0000000..cc7392e --- /dev/null +++ b/website/privacy.html @@ -0,0 +1,120 @@ +<!doctype html> +<html lang="en"> + +<head> + <meta charset="utf-8" /> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <title>Privacy Policy — Hutch</title> + <link rel="stylesheet" href="styles.css" /> +</head> + +<body> + <div class="page"> + <header class="site-header"> + <div class="brand-row"> + <a class="brand" href="index.html"> + <img class="app-icon" src="https://img.cleberg.net/apps/hutch/logo/hutch_light.png" + alt="Hutch icon" /> + <div> + <h1>Hutch</h1> + <p class="subtitle">A native sourcehut client for iPhone</p> + </div> + </a> + + <div class="hero-actions"> + <a href="#" class="store-link"> + <img src="storebutton.svg" class="store-img" alt="Download on the App Store" /> + </a> + + <nav class="header-links"> + <a href="https://sr.ht/~ccleberg/Hutch/">Source Code</a> + <span>·</span> + <a href="mailto:[email protected]">Email</a> + </nav> + </div> + </div> + </header> + + <main> + <section class="privacy"> + <h2>Privacy Policy</h2> + + <p><strong>Hutch</strong><br> + Last updated: March 17, 2026</p> + + <h3>Overview</h3> + <p> + Hutch is a client for SourceHut. This app allows users to browse repositories, + tickets, and builds using their own SourceHut account. + </p> + + <h3>Data Collection</h3> + <p> + Hutch does not collect, store, or transmit personal data to the developer. + </p> + <p> + All data displayed in the app is retrieved directly from SourceHut using + user-provided authentication credentials. + </p> + + <h3>Authentication</h3> + <p> + Hutch uses a SourceHut Personal Access Token (PAT) provided by the user. + </p> + <p> + The token is stored securely on-device and is used only to authenticate requests + to SourceHut. The developer does not have access to this token. + </p> + + <h3>Data Usage</h3> + <p>The app communicates with SourceHut servers to:</p> + <ul> + <li>fetch repositories, files, and commits</li> + <li>retrieve and update tickets</li> + <li>submit and monitor builds</li> + </ul> + <p> + No data is transmitted to any servers operated by the developer. + </p> + + <h3>Third-Party Services</h3> + <p> + Hutch communicates with SourceHut services (sr.ht) to retrieve user data. + </p> + <p> + No analytics, advertising, or tracking SDKs are used. + </p> + + <h3>User-Generated Content</h3> + <p> + The app displays content from SourceHut, including repositories, tickets, and + builds. This content is accessed based on the user’s authentication and + permissions. + </p> + + <h3>Device Permissions</h3> + <p> + Hutch does not request access to sensitive device data such as location, + contacts, camera, or microphone. + </p> + + <h3>Changes to This Policy</h3> + <p> + This policy may be updated in future versions. Updates will be reflected on this page. + </p> + + <h3>Contact</h3> + <p> + For questions, contact: + <a href="mailto:[email protected]">[email protected]</a> + </p> + </section> + </main> + + <footer class="site-footer"> + © 2026 <a href="https://cleberg.net">Christian Cleberg</a> + </footer> + </div> +</body> + +</html>
\ No newline at end of file |
