Adding in a holding page for a website

This commit is contained in:
Timmy
2026-03-25 14:27:06 +00:00
parent fae7b3be20
commit 71a6c72614
3 changed files with 278 additions and 0 deletions

68
website/privacy.html Normal file
View File

@@ -0,0 +1,68 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Privacy Policy — Storkit</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<header>
<h1><a href="/" style="color: inherit;">stor<span>kit</span></a></h1>
<p class="tagline">Privacy Policy</p>
</header>
<section>
<p><strong>Last updated:</strong> 25 March 2026</p>
<h2>Who we are</h2>
<p>Storkit is operated by Libby Labs Ltd ("we", "us", "our"), trading as Crashlabs. Our contact email is <a href="mailto:hello@storkit.dev">hello@storkit.dev</a>.</p>
</section>
<section>
<h2>What we collect</h2>
<p>When you interact with Storkit via WhatsApp, Slack, Matrix, or the web interface, we may collect:</p>
<p><strong>Messaging data:</strong> Your phone number or chat identifier and the content of messages you send to the bot. This is used solely to process your requests and maintain conversation context.</p>
<p><strong>Usage data:</strong> Basic server logs including timestamps and request metadata. We do not use analytics trackers on this website.</p>
</section>
<section>
<h2>How we use your data</h2>
<p>We use your data only to provide and improve the Storkit service. Specifically:</p>
<p>- To process commands and respond to your messages.<br>
- To maintain conversation history within active sessions.<br>
- To diagnose and fix technical issues.</p>
<p>We do not sell, rent, or share your personal data with third parties for marketing purposes.</p>
</section>
<section>
<h2>Third-party services</h2>
<p>Messages sent via WhatsApp are processed through Meta's WhatsApp Business API or Twilio's messaging platform, subject to their respective privacy policies. Messages sent via Slack or Matrix pass through those platforms' infrastructure.</p>
</section>
<section>
<h2>Data retention</h2>
<p>Conversation history is stored locally on our servers and retained only for the duration needed to maintain session context. We do not retain message data indefinitely.</p>
</section>
<section>
<h2>Your rights</h2>
<p>You may request access to, correction of, or deletion of your personal data at any time by contacting us at <a href="mailto:hello@storkit.dev">hello@storkit.dev</a>.</p>
</section>
<section>
<h2>Changes to this policy</h2>
<p>We may update this policy from time to time. Changes will be posted on this page with an updated date.</p>
</section>
<footer>
<p>&copy; 2026 Libby Labs Ltd. All rights reserved. &middot; <a href="/">Home</a></p>
</footer>
</div>
</body>
</html>