| import { Component } from '@angular/core'; |
| import { CommonModule } from '@angular/common'; |
|
|
| @Component({ |
| selector: 'app-privacy', |
| standalone: true, |
| imports: [CommonModule], |
| template: ` |
| <section style="padding:24px; max-width:900px; margin:32px auto; background:#fff; border-radius:8px; box-shadow:08px24px rgba(0,0,0,0.08);"> |
| <h1>Privacy Policy</h1> |
| <p><strong>(For Py-Detect Application)</strong></p> |
| |
| <h2>1. Introduction</h2> |
| <p>This Privacy Policy explains how Pykara Technologies collects, uses, stores, and protects your information when you use the PyDetect application. We respect your privacy and handle your data responsibly.</p> |
| |
| <h2>2. Information We Collect</h2> |
| <h3>a. Personal Information</h3> |
| <ul> |
| <li>Name</li> |
| <li>Email address</li> |
| <li>Profile details (role, department)</li> |
| <li>Login activity</li> |
| </ul> |
| |
| <h3>b. Case-Related Information</h3> |
| <ul> |
| <li>Crime details</li> |
| <li>Suspect details</li> |
| <li>Evidence</li> |
| <li>Notes and reports</li> |
| </ul> |
| |
| <h3>c. Audio & Video Data</h3> |
| <ul> |
| <li>Voice recordings</li> |
| <li>Video recordings</li> |
| <li>Body-language metrics</li> |
| <li>AI analysis summaries</li> |
| </ul> |
| |
| <h3>d. Technical Data</h3> |
| <ul> |
| <li>IP address</li> |
| <li>Browser details</li> |
| <li>Device details</li> |
| <li>Log files</li> |
| <li>Activity history</li> |
| </ul> |
| |
| <h2>3. How We Use Your Data</h2> |
| <p>We use the collected data to: create and manage user accounts, provide investigation features, generate AI-based analysis, improve system accuracy, maintain security, prevent unauthorized access, and respond to support requests. We do not sell or rent your data to third parties.</p> |
| |
| <h2>4. Legal Basis for Data Processing</h2> |
| <p>We process your data based on user consent, contractual need, legal obligations, and security and fraud-prevention.</p> |
| |
| <h2>5. Sharing of Information</h2> |
| <p>We may share data only with authorized users (based on role), internal team members for support, and legal authorities if required by law. We never share your data for marketing purposes.</p> |
| |
| <h2>6. Data Storage and Security</h2> |
| <p>We use secure methods to store your data, including encrypted databases, restricted access, secure servers, and regular audits. Audio and video data may be stored in cloud storage with encryption.</p> |
| |
| <h2>7. Data Retention</h2> |
| <p>We keep your data for as long as required for active investigations, legal compliance, and system analysis. After that, data may be archived or deleted securely.</p> |
| |
| <h2>8. Your Rights</h2> |
| <p>Depending on your region (India/UK/EU/US), you may have rights including access, correction, deletion, restriction, and withdrawal of consent. Send requests to <a href="mailto:support@pykara.ai">support@pykara.ai</a>.</p> |
| |
| <h2>9. Cookies</h2> |
| <p>The application may use cookies for login sessions, security, and preferences. You may disable cookies, but some features may not work.</p> |
| |
| <h2>10. Changes to This Policy</h2> |
| <p>We may update this Privacy Policy from time to time. The updated version will be available on our website.</p> |
| |
| <h2>11. Contact Information</h2> |
| <p>For questions or privacy concerns: <a href="mailto:info@pykara.ai">info@pykara.ai</a></p> |
| <p>Company: Pykara Technologies</p> |
| </section> |
| ` |
| }) |
| export class PrivacyComponent {} |
|
|