towerops/lib/towerops_web/controllers/page_html/privacy.html.heex
2026-01-25 17:12:34 -06:00

117 lines
5.6 KiB
Text

<Layouts.app flash={@flash}>
<div class="space-y-8">
<div>
<h1 class="text-3xl font-bold text-gray-900 dark:text-white">Privacy Policy</h1>
<p class="mt-2 text-sm text-gray-600 dark:text-gray-400">
Last updated: {Date.utc_today() |> Calendar.strftime("%B %d, %Y")}
</p>
</div>
<div class="prose prose-sm dark:prose-invert max-w-none">
<section class="space-y-4">
<h2 class="text-xl font-semibold text-gray-900 dark:text-white">
Our Commitment to Privacy
</h2>
<p class="text-gray-700 dark:text-gray-300">
At Towerops, we value your privacy. This policy outlines how we collect, use, and protect your data when you use our network monitoring platform.
</p>
</section>
<section class="space-y-4 mt-8">
<h2 class="text-xl font-semibold text-gray-900 dark:text-white">
Data Collection and Use
</h2>
<p class="text-gray-700 dark:text-gray-300">
We collect and store information necessary to provide our network monitoring services, including:
</p>
<ul class="list-disc pl-6 space-y-2 text-gray-700 dark:text-gray-300">
<li>Account information (email address, organization details)</li>
<li>Network device data (IP addresses, SNMP data, device configurations)</li>
<li>Monitoring metrics and alerts</li>
<li>Usage information to improve our services</li>
</ul>
<p class="text-gray-700 dark:text-gray-300">
<strong class="font-semibold">
Your data is used exclusively for providing our monitoring services to you.
</strong>
We will never sell, trade, or expose your data to third parties for marketing or any other purposes.
</p>
</section>
<section class="space-y-4 mt-8">
<h2 class="text-xl font-semibold text-gray-900 dark:text-white">Data Protection</h2>
<p class="text-gray-700 dark:text-gray-300">
We implement industry-standard security measures to protect your data:
</p>
<ul class="list-disc pl-6 space-y-2 text-gray-700 dark:text-gray-300">
<li>Encrypted connections (HTTPS/TLS) for all data transmission</li>
<li>Secure database storage with encryption at rest</li>
<li>Access controls and authentication mechanisms</li>
<li>Regular security audits and updates</li>
</ul>
</section>
<section class="space-y-4 mt-8">
<h2 class="text-xl font-semibold text-gray-900 dark:text-white">Data Retention</h2>
<p class="text-gray-700 dark:text-gray-300">
We retain your data for as long as your account is active and as necessary to provide our services. Time-series monitoring data is retained according to your subscription plan. When you delete your account, we will delete your data within 30 days, except where we are required to retain it for legal or compliance purposes.
</p>
</section>
<section class="space-y-4 mt-8">
<h2 class="text-xl font-semibold text-gray-900 dark:text-white">Third-Party Services</h2>
<p class="text-gray-700 dark:text-gray-300">
We use limited third-party services to operate our platform:
</p>
<ul class="list-disc pl-6 space-y-2 text-gray-700 dark:text-gray-300">
<li>Cloud infrastructure providers for hosting</li>
<li>Email delivery services for notifications</li>
<li>Payment processors for subscription billing</li>
</ul>
<p class="text-gray-700 dark:text-gray-300">
These services are bound by their own privacy policies and are used solely to deliver our services to you.
</p>
</section>
<section class="space-y-4 mt-8">
<h2 class="text-xl font-semibold text-gray-900 dark:text-white">Your Rights</h2>
<p class="text-gray-700 dark:text-gray-300">
You have the right to:
</p>
<ul class="list-disc pl-6 space-y-2 text-gray-700 dark:text-gray-300">
<li>Access your data at any time through your account</li>
<li>Export your data in standard formats</li>
<li>Request deletion of your account and associated data</li>
<li>Update or correct your information</li>
<li>Opt out of non-essential communications</li>
</ul>
</section>
<section class="space-y-4 mt-8">
<h2 class="text-xl font-semibold text-gray-900 dark:text-white">Cookies and Tracking</h2>
<p class="text-gray-700 dark:text-gray-300">
We use essential cookies to maintain your session and preferences. We do not use third-party tracking or advertising cookies.
</p>
</section>
<section class="space-y-4 mt-8">
<h2 class="text-xl font-semibold text-gray-900 dark:text-white">
Changes to This Policy
</h2>
<p class="text-gray-700 dark:text-gray-300">
We may update this privacy policy from time to time. We will notify you of any significant changes by email or through our platform.
</p>
</section>
<section class="space-y-4 mt-8 pt-8 border-t border-gray-200 dark:border-gray-700">
<h2 class="text-xl font-semibold text-gray-900 dark:text-white">Contact Us</h2>
<p class="text-gray-700 dark:text-gray-300">
If you have questions about this privacy policy or how we handle your data, please contact us at <a
href="mailto:privacy@towerops.net"
class="text-blue-600 hover:text-blue-500 dark:text-blue-400 dark:hover:text-blue-300"
>privacy@towerops.net</a>.
</p>
</section>
</div>
</div>
</Layouts.app>