Write on the margins of the internet. Powered by the AT Protocol. margin.at
extension web atproto comments
at main 67 lines 3.6 kB view raw
1--- 2import BaseLayout from '../layouts/BaseLayout.astro'; 3--- 4 5<BaseLayout title="Terms of Service - Margin" description="Margin Terms of Service"> 6 <div class="max-w-3xl mx-auto py-12 px-4"> 7 <a href="/home" class="inline-flex items-center gap-2 text-sm font-medium text-surface-500 hover:text-surface-900 dark:hover:text-white transition-colors mb-8"> 8 <svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m12 19-7-7 7-7"/><path d="M19 12H5"/></svg> 9 <span>Home</span> 10 </a> 11 12 <div class="prose prose-surface dark:prose-invert max-w-none"> 13 <h1 class="font-display font-bold text-3xl mb-2 text-surface-900 dark:text-white">Terms of Service</h1> 14 <p class="text-surface-500 dark:text-surface-400 mb-8">Last updated: January 17, 2026</p> 15 16 <section class="mb-8"> 17 <h2 class="text-xl font-bold text-surface-900 dark:text-white mb-4">Overview</h2> 18 <p class="text-surface-700 dark:text-surface-300 leading-relaxed"> 19 Margin is an open-source project. By using our service, you agree to these terms ("Terms"). If you do not agree to these Terms, please do not use the Service. 20 </p> 21 </section> 22 23 <section class="mb-8"> 24 <h2 class="text-xl font-bold text-surface-900 dark:text-white mb-4">Open Source</h2> 25 <p class="text-surface-700 dark:text-surface-300 leading-relaxed"> 26 Margin is open source software. The code is available publicly and is provided "as is", without warranty of any kind, express or implied. 27 </p> 28 </section> 29 30 <section class="mb-8"> 31 <h2 class="text-xl font-bold text-surface-900 dark:text-white mb-4">User Conduct</h2> 32 <p class="text-surface-700 dark:text-surface-300 mb-4"> 33 You are responsible for your use of the Service and for any content you provide, including compliance with applicable laws, rules, and regulations. 34 </p> 35 <p class="text-surface-700 dark:text-surface-300 mb-4"> 36 We reserve the right to remove any content that violates these terms, including but not limited to: 37 </p> 38 <ul class="list-disc pl-5 mb-4 text-surface-700 dark:text-surface-300 space-y-1"> 39 <li>Illegal content</li> 40 <li>Harassment or hate speech</li> 41 <li>Spam or malicious content</li> 42 </ul> 43 </section> 44 45 <section class="mb-8"> 46 <h2 class="text-xl font-bold text-surface-900 dark:text-white mb-4">Decentralized Nature</h2> 47 <p class="text-surface-700 dark:text-surface-300 leading-relaxed"> 48 Margin interacts with the AT Protocol network. We do not control the network itself or the data stored on your Personal Data Server (PDS). Please refer to the terms of your PDS provider for data storage policies. 49 </p> 50 </section> 51 52 <section class="mb-8"> 53 <h2 class="text-xl font-bold text-surface-900 dark:text-white mb-4">Disclaimer</h2> 54 <p class="text-surface-700 dark:text-surface-300 leading-relaxed uppercase"> 55 THE SERVICE IS PROVIDED "AS IS" AND "AS AVAILABLE". WE DISCLAIM ALL CONDITIONS, REPRESENTATIONS AND WARRANTIES NOT EXPRESSLY SET OUT IN THESE TERMS. 56 </p> 57 </section> 58 59 <section class="mb-8"> 60 <h2 class="text-xl font-bold text-surface-900 dark:text-white mb-4">Contact</h2> 61 <p class="text-surface-700 dark:text-surface-300"> 62 For questions about these Terms, please contact us at <a href="mailto:hello@margin.at" class="text-primary-600 dark:text-primary-400 hover:text-primary-700 dark:hover:text-primary-300 hover:underline">hello@margin.at</a> 63 </p> 64 </section> 65 </div> 66 </div> 67</BaseLayout>