Files
myAi/web/wwwroot/legal/privacy-en.html
claude af5d9fd7ad refactor(web): enhance legal.js to inject topbar + footer; strip duplication from legal pages
legal.js now:
- Dynamically injects a common topbar (logo + language switcher) on all 6 pages
- Dynamically injects a language-aware footer (EN vs RO copyright text)
- Detects page language and builds appropriate language links
- Uses event delegation for language links (works on injected elements)
- Persists language preference to localStorage

All 6 legal HTML pages now:
- Removed the hardcoded topbar div (12 lines of identical HTML per file)
- Removed the hardcoded footer div (7 lines of HTML with language-specific content)
- Total savings: 114 lines of duplicated HTML across 6 pages
- Pages are 38% smaller (60 lines → 37 lines core content)

Closes #31

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-28 13:34:18 +03:00

97 lines
3.3 KiB
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Privacy Policy - myAi</title>
<meta name="description" content="Information about the collection, use, and protection of personal data by myAi.">
<link rel="stylesheet" href="css/legal.css">
</head>
<body>
<div class="wrap">
<div class="hero">
<div class="kicker">Data protection</div>
<h1>Privacy Policy</h1>
<p>Information about the collection, use, and protection of personal data by myAi.</p>
</div>
<div class="content">
<div class="notice"><strong>myAi</strong> respects the confidentiality of personal data and is committed to protecting the information of clients, partners, and website visitors.</div>
<h2>1. Who we are</h2>
<p>myAi</p>
<p>Email: <a href="mailto:contact@myai.ro">contact@myai.ro</a><br>Website: <a href="https://myAi.ro">myAi.ro</a></p>
<p>This document explains how we collect, use, and protect your personal data.</p>
<h2>2. What data we collect</h2>
<p>We may collect the following types of data:</p>
<ul>
<li>Contact details such as name, email address, and phone number</li>
<li>Data submitted voluntarily through forms, including messages, requests, and quote inquiries</li>
<li>Technical data such as IP address, browser type, cookies, and visited pages</li>
<li>Data needed in the contractual relationship, if you are a client</li>
</ul>
<h2>3. Purpose of processing</h2>
<p>Your data may be processed for:</p>
<ul>
<li>answering requests and direct communication</li>
<li>providing our services</li>
<li>improving website functionality</li>
<li>marketing, only with consent</li>
<li>meeting legal and accounting obligations</li>
</ul>
<h2>4. Legal basis</h2>
<p>We process data under Article 6 GDPR based on:</p>
<ul>
<li>the data subjects consent</li>
<li>performance of a contract</li>
<li>legal obligation</li>
<li>legitimate interest</li>
</ul>
<h2>5. Data retention</h2>
<p>We keep personal data only for as long as necessary for the purposes for which it was collected or as required by law.</p>
<h2>6. Data disclosure</h2>
<p>Data may be disclosed only to:</p>
<ul>
<li>IT or hosting providers</li>
<li>contractual partners involved in service delivery</li>
<li>public authorities, only where required by law</li>
</ul>
<p>We do not sell or transfer data to third parties for commercial purposes.</p>
<h2>7. Your rights under GDPR</h2>
<p>You have the right to:</p>
<ul>
<li>access</li>
<li>rectification</li>
<li>erasure (“right to be forgotten”)</li>
<li>restriction</li>
<li>objection</li>
<li>data portability</li>
<li>withdrawal of consent</li>
</ul>
<p>Requests can be sent to: <a href="mailto:contact@myai.ro">contact@myai.ro</a>.</p>
<h2>8. Data security</h2>
<p>We implement appropriate technical and organizational measures to protect data against unauthorized access, loss, or disclosure.</p>
<h2>9. Transfers outside the EU</h2>
<p>We normally do not transfer data outside the EU. If this becomes necessary, appropriate safeguards will be used, including Standard Contractual Clauses.</p>
<h2>10. Policy updates</h2>
<p>We reserve the right to update this policy. The latest version will remain permanently available on the website.</p>
<p class="meta">Last updated: 2026-03-26</p>
</div>
</div>
<script src="js/legal.js"></script>
</body>
</html>