EverydayTech Platform - Developer Reference
Complete Source Code Documentation - All Applications
Loading...
Searching...
No Matches
About.jsx
Go to the documentation of this file.
1import PublicLayout from '../components/Layout/PublicLayout';
2import './About.css';
3
4export default function About() {
5 return (
6 <PublicLayout>
7 <div className="about-container">
8 <section className="about-hero">
9 <h1>About IBG MSP Platform</h1>
10 <p className="lead">
11 A complete Remote Monitoring & Management (RMM) and Professional Services Automation (PSA)
12 solution built for modern Managed Service Providers.
13 </p>
14 </section>
15
16 <section className="about-section">
17 <h2>Our Mission</h2>
18 <p>
19 We built the IBG MSP Platform to empower service providers with tools that scale.
20 From monitoring endpoints to managing tickets, contracts, and billing—everything in one place.
21 </p>
22 </section>
23
24 <section className="about-section">
25 <h2>What We Offer</h2>
26 <div className="features-grid">
27 <div className="feature-box">
28 <span className="material-symbols-outlined">computer</span>
29 <h3>Remote Monitoring</h3>
30 <p>Real-time agent reporting, alerts, and automated responses.</p>
31 </div>
32 <div className="feature-box">
33 <span className="material-symbols-outlined">confirmation_number</span>
34 <h3>Ticketing</h3>
35 <p>Streamlined support workflows with SLA tracking.</p>
36 </div>
37 <div className="feature-box">
38 <span className="material-symbols-outlined">payments</span>
39 <h3>Billing</h3>
40 <p>Invoicing, contracts, and revenue insights.</p>
41 </div>
42 <div className="feature-box">
43 <span className="material-symbols-outlined">inventory_2</span>
44 <h3>Inventory</h3>
45 <p>Stock management, purchase orders, and product catalogs.</p>
46 </div>
47 </div>
48 </section>
49
50 <section className="about-section">
51 <h2>Technology Stack</h2>
52 <p>
53 Built with modern web technologies: React frontend, Node.js backend, PostgreSQL database,
54 and a multi-tenant architecture designed for security and scalability.
55 </p>
56 </section>
57
58 <section className="about-section">
59 <h2>Contact Us</h2>
60 <p>
61 Have questions or want to learn more? Reach out to our team at{' '}
62 <a href="mailto:support@ibgmsp.com">support@ibgmsp.com</a>
63 </p>
64 </section>
65 </div>
66 </PublicLayout>
67 );
68}