91 lines
4.2 KiB
HTML
91 lines
4.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Privacy Policy - Sojorn</title>
|
|
<script src="https://cdn.tailwindcss.com"></script>
|
|
<link
|
|
href="https://fonts.googleapis.com/css2?family=Literata:opsz,wght@7..72,400;600;700&family=Outfit:wght@300;400;600;700&display=swap"
|
|
rel="stylesheet">
|
|
<script>
|
|
tailwind.config = {
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
egyptianBlue: '#1034A6',
|
|
queenPink: '#E8CCD7',
|
|
navyText: '#0A2351',
|
|
},
|
|
fontFamily: {
|
|
sans: ['Outfit', 'sans-serif'],
|
|
serif: ['Literata', 'serif'],
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
<style>
|
|
body {
|
|
font-family: 'Outfit', sans-serif;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body class="bg-gray-50 text-navyText">
|
|
<nav class="w-full py-6 px-8 flex justify-between items-center bg-white border-b border-gray-200">
|
|
<a href="/" class="flex items-center gap-3">
|
|
<img src="/leaf.png" alt="Sojorn Leaf" class="h-12 w-auto">
|
|
<span class="text-5xl font-serif font-bold tracking-tight text-egyptianBlue">sojorn</span>
|
|
</a>
|
|
<a href="/" class="text-sm font-semibold hover:text-egyptianBlue">Home</a>
|
|
</nav>
|
|
|
|
<main class="max-w-3xl mx-auto px-6 py-12">
|
|
<h1 class="text-3xl font-bold mb-2 text-egyptianBlue">Privacy & Data Sovereignty</h1>
|
|
<p class="mb-8 text-sm text-gray-500">Last Updated: January 26, 2026</p>
|
|
|
|
<div class="prose prose-blue max-w-none text-gray-700">
|
|
<p class="lead font-semibold">Profiting from surveillance is strictly against our principles. We reject the
|
|
"attention economy" model.</p>
|
|
|
|
<h2 class="text-xl font-bold mt-6 mb-4">1. Data Sovereignty</h2>
|
|
<p class="mb-4">We do not sell your data. We do not index your content on search engines. Sojorn is a
|
|
private community designed to protect your posts and identity from the extractivist economy.</p>
|
|
|
|
<h2 class="text-xl font-bold mt-6 mb-4">2. Collection Limit</h2>
|
|
<p class="mb-4">We collect only what is necessary to function: your email (for authentication and critical
|
|
updates) and the content you explicitly create. We do not use third-party tracking pixels that follow
|
|
you across the web.</p>
|
|
|
|
<h2 class="text-xl font-bold mt-6 mb-4">3. Zero-Knowledge Encryption</h2>
|
|
<p class="mb-4">Private messages are end-to-end encrypted (E2EE) using keys generated on your device. We
|
|
have no way to decrypt or read your private conversations.</p>
|
|
|
|
<h2 class="text-xl font-bold mt-6 mb-4">4. Newsletter & Third Parties</h2>
|
|
<p class="mb-4">Our newsletter is managed via **SendPulse**. When you subscribe, your email is stored
|
|
securely on their servers solely for the purpose of delivering our communications. We do not
|
|
cross-reference this list for ad targeting.</p>
|
|
|
|
<h2 class="text-xl font-bold mt-6 mb-4">4. Your Right to Vanish</h2>
|
|
<p class="mb-4">You have the absolute right to delete your account and all associated data at any time. When
|
|
you leave, you leave. We do not retain hidden profiles.</p>
|
|
|
|
<h2 class="text-xl font-bold mt-6 mb-4">5. Contact</h2>
|
|
<p class="mb-4">For privacy concerns: <a href="mailto:privacy@sojorn.net"
|
|
class="text-egyptianBlue underline">privacy@sojorn.net</a>.</p>
|
|
</div>
|
|
</main>
|
|
|
|
<footer class="py-8 bg-white border-t border-gray-200 text-center text-gray-500 text-sm">
|
|
<div class="flex justify-center gap-6 mb-4">
|
|
<a href="/privacy" class="hover:text-egyptianBlue">Privacy</a>
|
|
<a href="/terms" class="hover:text-egyptianBlue">Terms</a>
|
|
</div>
|
|
© 2026 <a href="https://mp.ls" target="_blank" class="hover:text-egyptianBlue transition">MP.LS LLC</a>.
|
|
All rights reserved.
|
|
</footer>
|
|
</body>
|
|
|
|
</html> |