Kin: personal relationships app — server (cadence/due/migrations) + Expo Android app
Some checks failed
Build & Release APK / build (push) Failing after 13s

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
2026-08-09 00:49:45 -07:00
commit ac0b82e6a0
101 changed files with 11534 additions and 0 deletions

34
server/public/index.html Normal file
View File

@@ -0,0 +1,34 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Personal CRM</title>
<link rel="stylesheet" href="/styles.css" />
</head>
<body>
<header>
<h1>Personal CRM</h1>
<div class="stats" id="stats"></div>
<div class="controls">
<input id="search" type="search" placeholder="Search name or email…" autocomplete="off" />
<select id="tag"><option value="">All tags</option></select>
<select id="sort">
<option value="name">Sort: Name</option>
<option value="recent">Sort: Recently contacted</option>
<option value="stale">Sort: Out of touch</option>
</select>
<button id="add-btn" class="primary">+ Contact</button>
</div>
</header>
<main>
<ul id="list" class="list"></ul>
<section id="detail" class="detail">
<p class="empty">Select a contact, or add a new one.</p>
</section>
</main>
<script src="/app.js"></script>
</body>
</html>