EverydayTech Platform - Developer Reference
Complete Source Code Documentation - All Applications
Loading...
Searching...
No Matches
Security.jsx
Go to the documentation of this file.
1import PublicLayout from '../components/Layout/PublicLayout';
2import './LegalPage.css';
3import { apiFetch } from '../lib/api';
4
5export default function Security() {
6 return (
7 <PublicLayout>
8 <div className="legal-container">
9 <h1>Security</h1>
10 <p className="updated">Last updated: November 4, 2025</p>
11
12 <section className="legal-section">
13 <h2>Our Commitment to Security</h2>
14 <p>
15 At IBG MSP Platform, security is a top priority. We implement comprehensive measures to protect
16 your data and ensure the integrity of our services.
17 </p>
18 </section>
19
20 <section className="legal-section">
21 <h2>Data Encryption</h2>
22 <p>
23 All data transmitted between your browser and our servers is encrypted using industry-standard
24 TLS/SSL protocols. Sensitive data is encrypted at rest in our databases.
25 </p>
26 </section>
27
28 <section className="legal-section">
29 <h2>Authentication & Access Control</h2>
30 <p>
31 We use secure JWT-based authentication and role-based access control to ensure only authorized
32 users can access your data. Multi-tenant row-level security prevents cross-tenant data leakage.
33 </p>
34 </section>
35
36 <section className="legal-section">
37 <h2>Infrastructure Security</h2>
38 <p>
39 Our infrastructure includes automated backups, regular security updates, and monitoring for
40 suspicious activity. We follow security best practices in our development and deployment processes.
41 </p>
42 </section>
43
44 <section className="legal-section">
45 <h2>Compliance</h2>
46 <p>
47 We are committed to maintaining compliance with relevant data protection regulations.
48 Our security practices are regularly reviewed and updated.
49 </p>
50 </section>
51
52 <section className="legal-section">
53 <h2>Report a Vulnerability</h2>
54 <p>
55 If you discover a security vulnerability, please report it immediately to{' '}
56 <a href="mailto:security@ibgmsp.com">security@ibgmsp.com</a>. We take all reports seriously
57 and will respond promptly.
58 </p>
59 </section>
60 </div>
61 </PublicLayout>
62 );
63}