EverydayTech Platform - Developer Reference
Complete Source Code Documentation - All Applications
Loading...
Searching...
No Matches
Home.jsx
Go to the documentation of this file.
1import { Link } from 'react-router-dom';
2import PublicLayout from '../components/Layout/PublicLayout';
3import './Home.css';
4
5function Home() {
6 return (
7 <PublicLayout>
8 {/* Hero Section */}
9 <section className="hero">
10 <div className="hero-container">
11 <div className="hero-content">
12 <h1 className="hero-title">
13 Complete MSP Platform for Modern IT Teams
14 </h1>
15 <p className="hero-subtitle">
16 Monitor, manage, and support your clients with our all-in-one remote monitoring and PSA solution.
17 Multi-tenant architecture built for MSPs who need scale and reliability.
18 </p>
19 <div className="hero-actions">
20 <Link to="/login" className="btn-hero-primary">
21 Get Started
22 </Link>
23 <a href="#features" className="btn-hero-secondary">
24 Learn More
25 </a>
26 </div>
27 {/* Documentation Link */}
28 <div style={{marginTop:16}}>
29 <Link to="/docs" className="btn-hero-secondary">View Documentation</Link>
30 </div>
31 </div>
32 <div className="hero-image">
33 <div className="dashboard-preview">
34 <img
35 src="/dashboard-preview.png"
36 alt="RMM+PSA Dashboard Preview - Ticket Management Interface"
37 className="preview-screenshot"
38 />
39 </div>
40 </div>
41 </div>
42 </section>
43
44 {/* Features Section */}
45 <section id="features" className="features">
46 <div className="section-container">
47 <h2 className="section-title">Everything You Need to Scale Your MSP</h2>
48 <p className="section-subtitle">
49 Comprehensive tools designed for managed service providers
50 </p>
51
52 <div className="features-grid">
53 <div className="feature-card">
54 <div className="feature-icon">
55 <span className="material-symbols-outlined">computer</span>
56 </div>
57 <h3>Remote Monitoring</h3>
58 <p>Real-time monitoring of all client devices with instant alerts and automated responses.</p>
59 </div>
60
61 <div className="feature-card">
62 <div className="feature-icon">
63 <span className="material-symbols-outlined">confirmation_number</span>
64 </div>
65 <h3>Ticket Management</h3>
66 <p>Streamlined ticketing system with priority handling, SLA tracking, and customer portals.</p>
67 </div>
68
69 <div className="feature-card">
70 <div className="feature-icon">
71 <span className="material-symbols-outlined">analytics</span>
72 </div>
73 <h3>Analytics & Reporting</h3>
74 <p>Comprehensive dashboards and custom reports to track performance and growth.</p>
75 </div>
76
77 <div className="feature-card">
78 <div className="feature-icon">
79 <span className="material-symbols-outlined">payments</span>
80 </div>
81 <h3>Billing & Invoicing</h3>
82 <p>Automated invoicing, contract management, and revenue tracking in one place.</p>
83 </div>
84
85 <div className="feature-card">
86 <div className="feature-icon">
87 <span className="material-symbols-outlined">inventory_2</span>
88 </div>
89 <h3>Inventory Management</h3>
90 <p>Track hardware, software licenses, and products with automated purchase orders.</p>
91 </div>
92
93 <div className="feature-card">
94 <div className="feature-icon">
95 <span className="material-symbols-outlined">lock</span>
96 </div>
97 <h3>Enterprise Security</h3>
98 <p>Row-level security, encrypted data, and compliance-ready infrastructure.</p>
99 </div>
100
101 <div className="feature-card">
102 <div className="feature-icon">
103 <span className="material-symbols-outlined">bolt</span>
104 </div>
105 <h3>Automation</h3>
106 <p>Automate routine tasks, patch management, and workflows to save time.</p>
107 </div>
108 </div>
109 </div>
110 </section>
111
112 {/* Services Section */}
113 <section className="services">
114 <div className="section-container">
115 <h2 className="section-title">Our MSP Services</h2>
116 <p className="section-subtitle">
117 Tailored solutions for every stage of your MSP journey
118 </p>
119
120 <div className="services-list">
121 <div className="service-item">
122 <div className="service-header">
123 <h3>🚀 Starter Plan</h3>
124 <p className="service-price">$19 AUD / month</p>
125 <div className="service-note">Includes 1 user</div>
126 </div>
127 <ul className="service-features">
128 <li>1 user included</li>
129 <li>Core RMM features</li>
130 <li>Ticket management</li>
131 <li>Email support</li>
132 <li>Community access</li>
133 <li>$2.50 AUD / endpoint / month</li>
134 </ul>
135 <Link to="/login" className="btn-service">Get Started</Link>
136 </div>
137
138 <div className="service-item featured">
139 <div className="featured-badge">Most Popular</div>
140 <div className="service-header">
141 <h3>💼 Professional Plan</h3>
142 <p className="service-price">$79 AUD / month</p>
143 <div className="service-note">Includes up to 5 users</div>
144 </div>
145 <ul className="service-features">
146 <li>Up to 5 users included</li>
147 <li>Advanced automation</li>
148 <li>White-label options</li>
149 <li>Priority support</li>
150 <li>Custom integrations</li>
151 <li>Advanced reporting</li>
152 <li>$2.50 AUD / endpoint / month</li>
153 </ul>
154 <Link to="/login" className="btn-service">Get Started</Link>
155 </div>
156
157 <div className="service-item">
158 <div className="service-header">
159 <h3>🏢 Enterprise Plan</h3>
160 <p className="service-price">Included with IBG Membership</p>
161 <div className="service-note">Unlimited users</div>
162 </div>
163 <ul className="service-features">
164 <li>Unlimited users</li>
165 <li>Dedicated support</li>
166 <li>Custom development</li>
167 <li>SLA guarantees</li>
168 <li>On-premise options</li>
169 <li>Training & onboarding</li>
170 <li>$2.50 AUD / endpoint / month</li>
171 </ul>
172 <a href="#contact" className="btn-service">Contact Us</a>
173 </div>
174 </div>
175 </div>
176 </section>
177
178 {/* CTA Section */}
179 <section className="cta">
180 <div className="cta-container">
181 <h2>Ready to Transform Your MSP?</h2>
182 <p>Join hundreds of MSPs already using our platform to scale their business</p>
183 <div className="cta-actions">
184 <Link to="/login" className="btn-cta-primary">Start Free Trial</Link>
185 <Link to="/docs" className="btn-cta-secondary">View Documentation</Link>
186 </div>
187 </div>
188 </section>
189 </PublicLayout>
190 );
191}
192
193export default Home;