krz/hutch

an ios client for sourcehut

clone: git clone https://gitbay.org/krz/hutch.git

v2: website/index.html · raw

 1<!doctype html>
 2<html lang="en">
 3
 4<head>
 5  <meta charset="utf-8" />
 6  <meta name="viewport" content="width=device-width, initial-scale=1" />
 7  <title>Hutch — native sourcehut client for iPhone</title>
 8  <link rel="stylesheet" href="styles.css" />
 9</head>
10
11<body>
12  <div class="page">
13    <header class="site-header">
14      <div class="brand-row">
15        <a class="brand" href="index.html">
16          <img class="app-icon" src="https://img.cleberg.net/apps/hutch/logo/hutch_light.png" alt="Hutch icon" />
17          <div>
18            <h1>Hutch</h1>
19            <p class="subtitle">A native sourcehut client for iPhone</p>
20          </div>
21        </a>
22
23        <div class="hero-actions">
24          <a href="#" class="store-link">
25            <img src="storebutton.svg" class="store-img" alt="Download on the App Store" />
26          </a>
27
28          <nav class="header-links">
29            <a href="https://sr.ht/~ccleberg/Hutch/">Source Code</a>
30            <span>·</span>
31            <a href="mailto:hello@cleberg.net">Email</a>
32          </nav>
33        </div>
34      </div>
35    </header>
36
37    <main>
38      <section class="content-grid">
39        <div>
40          <h2>Why it exists</h2>
41          <p>Built for people who prefer simple tools, plain text, and fast workflows.</p>
42          <p>Sourcehut is popular because of its simplicity and effectiveness, and I wanted an app that inherited those
43            traits.</p>
44        </div>
45
46        <div>
47          <h2>What it does</h2>
48          <ul>
49            <li>Browse repositories</li>
50            <li>Monitor builds and logs</li>
51            <li>Manage trackers and tickets</li>
52            <li>Git + Mercurial support</li>
53            <li>Profile & key management</li>
54          </ul>
55        </div>
56      </section>
57
58      <section class="screenshots">
59        <h2>Interface</h2>
60        <div class="shot-grid">
61          <img src="https://img.cleberg.net/apps/hutch/screenshots/code.webp">
62          <img src="https://img.cleberg.net/apps/hutch/screenshots/builds.webp">
63          <img src="https://img.cleberg.net/apps/hutch/screenshots/todo.webp">
64        </div>
65      </section>
66
67      <section class="resources">
68        <h2>Resources</h2>
69        <ul class="resource-list">
70          <li><a href="https://sr.ht/~ccleberg/Hutch/">Project homepage</a></li>
71          <li><a href="https://todo.sr.ht/~ccleberg/Hutch/">Issue tracker</a></li>
72          <li>Mailing Lists:
73            <ul>
74              <li><a href="https://lists.sr.ht/~ccleberg/hutch-devel">hutch-devel</a></li>
75              <li><a href="https://lists.sr.ht/~ccleberg/hutch-announce">hutch-announce</a></li>
76            </ul>
77          </li>
78          <li><a href="privacy.html">Privacy policy</a></li>
79        </ul>
80      </section>
81    </main>
82
83    <footer>
84      © 2026 <a href="https://cleberg.net">Christian Cleberg</a>
85    </footer>
86  </div>
87</body>
88
89</html>