-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
387 lines (349 loc) · 17.4 KB
/
index.html
File metadata and controls
387 lines (349 loc) · 17.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Open-source field service management dispatch console for telecom. Real-time job assignment, skill-based routing, ML-assisted dispatch. Built by someone who does the work.">
<meta name="og:title" content="FieldOpt - Modern Dispatch Console">
<meta name="og:description" content="Open-source FSM console. Real-time routing, skill-based assignment, ML-powered dispatch.">
<meta name="og:image" content="https://fieldopt.dev/assets/dashboard.png">
<title>FieldOpt - Modern Dispatch Console</title>
<link rel="stylesheet" href="css/styles.css">
<link rel="manifest" href="site.webmanifest">
<link rel="icon" type="image/svg+xml" href="assets/favicon.svg">
<link rel="icon" type="image/x-icon" href="assets/favicon.ico">
<link rel="icon" type="image/png" sizes="96x96" href="assets/favicon-96x96.png">
<link rel="apple-touch-icon" href="assets/apple-touch-icon.png">
<meta name="theme-color" content="#4a9eff">
</head>
<body>
<!-- Header -->
<header class="header">
<nav class="nav">
<a href="/" class="logo">
<svg class="logo-icon" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="logo-grad" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#4a9eff;stop-opacity:1" />
<stop offset="100%" style="stop-color:#2d6fb5;stop-opacity:1" />
</linearGradient>
</defs>
<rect width="100" height="100" fill="url(#logo-grad)" rx="20"/>
<text x="50" y="70" font-size="60" font-weight="800" text-anchor="middle" fill="white" font-family="system-ui">F</text>
</svg>
FieldOpt
</a>
<ul class="nav-links">
<li><a href="#features">Features</a></li>
<li><a href="#demo">Demo</a></li>
<li><a href="#pricing">Pricing</a></li>
<li><a href="https://github.com/FieldOpt/FieldOpt" class="nav-github" target="_blank"><svg width="18" height="18" viewBox="0 0 24 24" fill="currentColor"><path d="M12 0c-6.626 0-12 5.373-12 12 0 5.302 3.438 9.8 8.207 11.387.599.111.793-.261.793-.577v-2.234c-3.338.726-4.033-1.416-4.033-1.416-.546-1.387-1.333-1.756-1.333-1.756-1.089-.745.083-.729.083-.729 1.205.084 1.839 1.237 1.839 1.237 1.07 1.834 2.807 1.304 3.492.997.107-.775.418-1.305.762-1.604-2.665-.305-5.467-1.334-5.467-5.931 0-1.311.469-2.381 1.236-3.221-.124-.303-.535-1.524.117-3.176 0 0 1.008-.322 3.301 1.23.957-.266 1.983-.399 3.003-.404 1.02.005 2.047.138 3.006.404 2.291-1.552 3.297-1.23 3.297-1.23.653 1.653.242 2.874.118 3.176.77.84 1.235 1.911 1.235 3.221 0 4.609-2.807 5.624-5.479 5.921.43.372.823 1.102.823 2.222v 3.293c0 .319.192.694.801.576 4.765-1.589 8.199-6.086 8.199-11.386 0-6.627-5.373-12-12-12z"/></svg> GitHub</a></li>
</ul>
</nav>
</header>
<!-- Hero -->
<section class="hero">
<div class="container">
<h1>Modern Dispatch Built by Someone Who Does the Work</h1>
<p>Open-source field service management console. Real-time routing, skill-based assignment, ML-powered dispatch.</p>
<div class="cta-buttons">
<a href="https://demo.fieldopt.dev" class="btn btn-primary" target="_blank">See Live Demo</a>
<a href="https://github.com/FieldOpt/FieldOpt" class="btn btn-secondary" target="_blank">View on GitHub</a>
</div>
</div>
</section>
<!-- Problem Section -->
<section class="section problem-section">
<div class="container">
<h2>Modern Dispatch, Modern Challenges</h2>
<p class="section-intro">Field service management has evolved. Your tools should too.</p>
<div class="grid-3">
<div class="card problem-card">
<h3>⚡ Speed Matters</h3>
<p>Dispatch decisions need to happen in seconds, not minutes. Every delay costs time and money in the field.</p>
</div>
<div class="card problem-card">
<h3>🎯 Right Person, Right Job</h3>
<p>Matching techs to jobs based on actual skill, not guesswork. Reduce failures. Improve first-time fix rates.</p>
</div>
<div class="card problem-card">
<h3>📊 Data-Driven Decisions</h3>
<p>Routing should improve over time as you learn what works. Real-time visibility into what's happening in the field.</p>
</div>
</div>
</div>
</section>
<!-- Image Break: Field Tech -->
<section class="image-break">
<div class="image-container">
<img src="assets/a2.jpg" alt="Technician at work" class="accent-image">
<div class="image-overlay"></div>
</div>
</section>
<!-- Solution Section -->
<section class="section solution-section" id="features">
<div class="container">
<h2>What FieldOpt Does</h2>
<p class="section-intro">Real-time dispatch. Smart routing. Built for the field.</p>
<div class="grid-3">
<div class="card feature-card">
<h3>🔄 Drag-Drop Assignment</h3>
<p>Assign jobs to technicians in seconds. No complex navigation. Just click and drag.</p>
</div>
<div class="card feature-card">
<h3>👁️ Real-Time Visibility</h3>
<p>See technician workload, capacity, and timeline across the day. Know what's happening right now.</p>
</div>
<div class="card feature-card">
<h3>✓ Skill-Based Routing</h3>
<p>Match jobs to techs who are actually good at them. Reduce failures. Improve quality.</p>
</div>
<div class="card feature-card">
<h3>🗺️ Geographic Awareness</h3>
<p>Interactive map shows job locations and routing context. Optimize by location and distance.</p>
</div>
<div class="card feature-card">
<h3>🔍 Advanced Search</h3>
<p>Find the right tech or job in seconds. Filter by skill, location, availability, capacity.</p>
</div>
<div class="card feature-card">
<h3>📊 Batch Operations</h3>
<p>Select 5 jobs, assign to 1 tech. Bulk reassign. Bulk status changes. All at once.</p>
</div>
</div>
</div>
</section>
<!-- Image Break: Dispatch Center -->
<section class="image-break image-break-right">
<div class="image-container">
<img src="assets/a1.jpg" alt="Dispatch center operations" class="accent-image">
<div class="image-overlay"></div>
</div>
</section>
<!-- Demo Section -->
<section class="section demo-section" id="demo">
<div class="container">
<h2>See It Live</h2>
<p class="section-intro">The full dispatch console running 24/7.</p>
<div class="demo-wrapper">
<div class="browser-frame">
<div class="browser-header">
<div class="dot red"></div>
<div class="dot yellow"></div>
<div class="dot green"></div>
<span class="browser-url">demo.fieldopt.dev</span>
</div>
<svg class="dashboard-mockup" viewBox="0 0 1200 700" xmlns="http://www.w3.org/2000/svg">
<!-- Background -->
<rect width="1200" height="700" fill="#0f0f1e"/>
<!-- Header -->
<rect width="1200" height="50" fill="#1a1a2e"/>
<circle cx="30" cy="25" r="5" fill="#ff6b6b"/>
<circle cx="50" cy="25" r="5" fill="#ffd93d"/>
<circle cx="70" cy="25" r="5" fill="#6bcf7f"/>
<text x="600" y="35" font-size="14" fill="#4a9eff" text-anchor="middle" font-weight="600">FieldOpt Dispatch Console</text>
<!-- Left: Tech Grid -->
<rect x="20" y="70" width="280" height="600" fill="#16213e" rx="8"/>
<text x="30" y="95" font-size="12" font-weight="600" fill="#fff">Technicians</text>
<!-- Tech rows -->
<rect x="30" y="110" width="260" height="25" fill="#4a9eff" rx="4"/>
<text x="40" y="130" font-size="11" fill="#fff">Miles Davis • Available</text>
<rect x="30" y="145" width="260" height="25" fill="#4a9eff" rx="4"/>
<text x="40" y="165" font-size="11" fill="#fff">Chet Baker • On Break</text>
<rect x="30" y="180" width="260" height="25" fill="#2d6fb5" rx="4"/>
<text x="40" y="200" font-size="11" fill="#fff">John Coltrane • Assigned</text>
<rect x="30" y="215" width="260" height="25" fill="#4a9eff" rx="4"/>
<text x="40" y="235" font-size="11" fill="#fff">Thelonious Monk • Available</text>
<!-- Right: Job Grid -->
<rect x="320" y="70" width="560" height="320" fill="#16213e" rx="8"/>
<text x="330" y="95" font-size="12" font-weight="600" fill="#fff">Jobs to Assign</text>
<!-- Job rows -->
<rect x="330" y="110" width="540" height="25" fill="#ff6b6b" opacity="0.2" rx="4"/>
<text x="340" y="130" font-size="11" fill="#ff6b6b">Blue Note • Install • Pending</text>
<rect x="330" y="145" width="540" height="25" fill="#e5a834" opacity="0.2" rx="4"/>
<text x="340" y="165" font-size="11" fill="#e5a834">Village Vanguard • Repair • High</text>
<rect x="330" y="180" width="540" height="25" fill="#4caf6a" opacity="0.2" rx="4"/>
<text x="340" y="200" font-size="11" fill="#4caf6a">Apollo Theater • Maintenance • Low</text>
<rect x="330" y="215" width="540" height="25" fill="#ff6b6b" opacity="0.2" rx="4"/>
<text x="340" y="235" font-size="11" fill="#ff6b6b">Carnegie Hall • Inspection • Urgent</text>
<!-- Bottom: Map Preview -->
<rect x="320" y="410" width="560" height="260" fill="#16213e" rx="8"/>
<text x="330" y="435" font-size="12" font-weight="600" fill="#fff">Map & Timeline</text>
<!-- Simple map visualization -->
<circle cx="450" cy="550" r="30" fill="#4a9eff" opacity="0.5"/>
<circle cx="650" cy="480" r="30" fill="#2d6fb5" opacity="0.5"/>
<circle cx="550" cy="600" r="30" fill="#4a9eff" opacity="0.5"/>
<text x="450" y="560" font-size="10" fill="#fff" text-anchor="middle">Job 1</text>
<text x="650" y="490" font-size="10" fill="#fff" text-anchor="middle">Job 2</text>
<text x="550" y="610" font-size="10" fill="#fff" text-anchor="middle">Job 3</text>
<!-- Right sidebar: Timeline -->
<rect x="900" y="70" width="280" height="600" fill="#16213e" rx="8"/>
<text x="910" y="95" font-size="12" font-weight="600" fill="#fff">Timeline</text>
<!-- Timeline bars -->
<rect x="920" y="120" width="240" height="20" fill="#4a9eff" rx="3"/>
<text x="925" y="135" font-size="10" fill="#fff">Miles Davis</text>
<rect x="920" y="155" width="240" height="20" fill="#2d6fb5" rx="3"/>
<text x="925" y="170" font-size="10" fill="#fff">Chet Baker</text>
<rect x="920" y="190" width="240" height="20" fill="#4a9eff" rx="3"/>
<text x="925" y="205" font-size="10" fill="#fff">John Coltrane</text>
<!-- Feature callouts -->
<text x="910" y="280" font-size="10" fill="#4caf6a" font-weight="600">✓ Drag-drop</text>
<text x="910" y="300" font-size="10" fill="#4caf6a">✓ Real-time</text>
<text x="910" y="320" font-size="10" fill="#4caf6a">✓ Skill-based</text>
<text x="910" y="340" font-size="10" fill="#4caf6a">✓ Geographic</text>
</svg>
</div>
<a href="https://demo.fieldopt.dev" class="btn btn-primary btn-large" target="_blank">Launch Live Demo</a>
</div>
</div>
</section>
<!-- Moat Section -->
<section class="section moat-section">
<div class="container">
<h2>The Real Advantage: Data Flywheel</h2>
<div class="moat-content">
<div class="moat-text">
<p>Every dispatch creates data. Over time, FieldOpt learns which technicians excel at which job types, how long things actually take, what factors predict success.</p>
<p>That becomes a <strong>proprietary ML model</strong> trained on YOUR company's actual dispatch history.</p>
<p style="font-size: 1.1rem; color: #4a9eff; font-weight: 600; margin-top: 1.5rem;">The more you use FieldOpt, the smarter it gets.</p>
</div>
<svg class="moat-diagram" viewBox="0 0 400 300" xmlns="http://www.w3.org/2000/svg">
<!-- Flywheel circle -->
<defs>
<marker id="arrow" markerWidth="10" markerHeight="10" refX="9" refY="3" orient="auto" markerUnits="strokeWidth">
<path d="M0,0 L0,6 L9,3 z" fill="#4a9eff" />
</marker>
</defs>
<!-- Background -->
<rect width="400" height="300" fill="#f9f9fa" rx="16"/>
<!-- Center circle -->
<circle cx="200" cy="150" r="80" fill="#4a9eff" opacity="0.1" stroke="#4a9eff" stroke-width="2"/>
<!-- Stages -->
<!-- Data -->
<circle cx="280" cy="100" r="35" fill="#4a9eff"/>
<text x="280" y="110" font-size="14" fill="#fff" text-anchor="middle" font-weight="600">📊</text>
<text x="280" y="145" font-size="12" fill="#1a1a1a" text-anchor="middle" font-weight="600">Dispatch</text>
<text x="280" y="160" font-size="12" fill="#1a1a1a" text-anchor="middle" font-weight="600">Data</text>
<!-- ML Model -->
<circle cx="200" cy="230" r="35" fill="#2d6fb5"/>
<text x="200" y="240" font-size="14" fill="#fff" text-anchor="middle" font-weight="600">🧠</text>
<text x="200" y="275" font-size="12" fill="#1a1a1a" text-anchor="middle" font-weight="600">ML Model</text>
<!-- Better Routing -->
<circle cx="120" cy="100" r="35" fill="#4caf6a"/>
<text x="120" y="110" font-size="14" fill="#fff" text-anchor="middle" font-weight="600">🚀</text>
<text x="120" y="145" font-size="12" fill="#1a1a1a" text-anchor="middle" font-weight="600">Better</text>
<text x="120" y="160" font-size="12" fill="#1a1a1a" text-anchor="middle" font-weight="600">Routing</text>
<!-- Arrows -->
<path d="M 250 120 Q 240 140 220 170" stroke="#4a9eff" stroke-width="2" fill="none" marker-end="url(#arrow)"/>
<path d="M 150 220 Q 130 200 110 160" stroke="#4a9eff" stroke-width="2" fill="none" marker-end="url(#arrow)"/>
<path d="M 150 80 Q 170 70 240 85" stroke="#4a9eff" stroke-width="2" fill="none" marker-end="url(#arrow)"/>
<!-- Center text -->
<text x="200" y="155" font-size="14" fill="#4a9eff" text-anchor="middle" font-weight="700">Flywheel</text>
</svg>
</div>
</div>
</section>
<!-- Pricing Section -->
<section class="section pricing-section" id="pricing">
<div class="container">
<h2>Simple, Transparent Pricing</h2>
<p class="section-intro">Pay for what you use. Scale as you grow.</p>
<div class="grid-pricing">
<div class="card pricing-card">
<h3>Community</h3>
<div class="price">Free</div>
<ul>
<li>✓ Up to 25 technicians</li>
<li>✓ Self-hosted</li>
<li>✓ Full features</li>
<li>✓ AGPL-3.0 licensed</li>
<li>✓ GitHub community</li>
</ul>
<a href="https://github.com/FieldOpt/FieldOpt" class="btn btn-secondary" target="_blank">Get Started</a>
</div>
<div class="card pricing-card featured">
<div class="badge">Business</div>
<h3>Starter</h3>
<div class="price">$99<span>/month</span></div>
<ul>
<li>✓ Up to 50 technicians</li>
<li>✓ Managed cloud hosting</li>
<li>✓ Priority email support</li>
<li>✓ Custom branding</li>
<li>✓ API access</li>
</ul>
<a href="mailto:hello@fieldopt.dev" class="btn btn-primary">Contact Sales</a>
</div>
<div class="card pricing-card">
<h3>Pro</h3>
<div class="price">$399<span>/month</span></div>
<ul>
<li>✓ Up to 200 technicians</li>
<li>✓ Everything in Starter</li>
<li>✓ ML autodrip dispatch</li>
<li>✓ Custom integrations</li>
<li>✓ Dedicated support</li>
</ul>
<a href="mailto:hello@fieldopt.dev" class="btn btn-secondary">Contact Sales</a>
</div>
<div class="card pricing-card">
<h3>Enterprise</h3>
<div class="price">Custom</div>
<ul>
<li>✓ Unlimited technicians</li>
<li>✓ Everything in Pro</li>
<li>✓ On-premise deployment</li>
<li>✓ Custom development</li>
<li>✓ SLA guarantees</li>
</ul>
<a href="mailto:hello@fieldopt.dev" class="btn btn-secondary">Contact Us</a>
</div>
</div>
</div>
</section>
<!-- Final CTA -->
<section class="section final-cta">
<div class="container">
<h2>Ready to Modernize Dispatch?</h2>
<p>See the demo, read the code, or get in touch.</p>
<div class="cta-buttons">
<a href="https://demo.fieldopt.dev" class="btn btn-primary btn-large" target="_blank">Try Live Demo</a>
<a href="https://github.com/FieldOpt/FieldOpt" class="btn btn-secondary btn-large" target="_blank">View on GitHub</a>
</div>
</div>
</section>
<!-- Footer -->
<footer class="footer">
<div class="container">
<div class="footer-content">
<div class="footer-section">
<h4>Product</h4>
<ul>
<li><a href="https://demo.fieldopt.dev" target="_blank">Live Demo</a></li>
<li><a href="https://github.com/FieldOpt/FieldOpt" target="_blank">GitHub</a></li>
<li><a href="#pricing">Pricing</a></li>
</ul>
</div>
<div class="footer-section">
<h4>Resources</h4>
<ul>
<li><a href="https://github.com/FieldOpt/FieldOpt/wiki" target="_blank">Documentation</a></li>
<li><a href="https://github.com/FieldOpt/FieldOpt/issues" target="_blank">Support</a></li>
<li><a href="https://github.com/FieldOpt/FieldOpt/discussions" target="_blank">Community</a></li>
</ul>
</div>
<div class="footer-section">
<h4>Company</h4>
<ul>
<li><a href="mailto:hello@fieldopt.dev">Contact</a></li>
<li><a href="https://github.com/FieldOpt/FieldOpt/blob/main/LICENSE" target="_blank">License</a></li>
</ul>
</div>
</div>
<div class="footer-bottom">
<p>© 2026 FieldOpt. Built for the field, by the field. <a href="https://github.com/FieldOpt/FieldOpt/blob/main/LICENSE" target="_blank">AGPL-3.0 Licensed</a>.</p>
</div>
</div>
</footer>
</body>
</html>