-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathservices.html
More file actions
601 lines (531 loc) · 17.1 KB
/
services.html
File metadata and controls
601 lines (531 loc) · 17.1 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
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta content="width=device-width, initial-scale=1.0" name="viewport" />
<title>Services | DevForge IT</title>
<!-- Meta + favicon -->
<meta name="description" content="Managed IT support, cybersecurity, and web solutions for small teams from Central Florida to the Treasure Coast and remote clients." />
<link rel="icon" href="assets/logo_lightmode_onheader.png" type="image/png" />
<!-- Schema + Open Graph -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Organization",
"name": "DevForge IT",
"url": "https://www.devforg.it.com",
"contactPoint": [{
"@type": "ContactPoint",
"email": "hello@devforge.it.com",
"contactType": "customer support"
}]
}
</script>
<meta property="og:title" content="DevForge IT — Services" />
<meta property="og:description" content="Managed IT support, cybersecurity, and web solutions for small teams from Central Florida to the Treasure Coast and remote clients." />
<meta property="og:url" content="https://www.devforg.it.com/services.html" />
<meta property="og:image" content="https://www.devforg.it.com/preview.png" />
<meta property="og:type" content="website" />
<meta property="og:site_name" content="DevForge IT" />
<!-- Bootstrap (same as index) -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.2/dist/css/bootstrap.min.css" rel="stylesheet" />
<style>
/* Light + dark global backgrounds (match index.html) */
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-image: url("assets/bg-light-circuits.jpg");
background-size: cover;
background-attachment: fixed;
background-position: center;
color: #333;
}
body.dark-mode {
background-image: url("assets/bg-dark-circuits.jpg");
background-size: cover;
background-attachment: fixed;
background-position: center;
color: #e5e7eb;
}
/* Main content panel */
main.container {
background: rgba(255, 255, 255, 0.88);
border-radius: 16px;
padding: 2.5rem 2rem;
margin-top: 2rem;
}
body.dark-mode main.container {
background: rgba(15, 23, 42, 0.9);
}
/* HERO HEADER (same as index) */
.hero-header {
position: relative;
height: 260px;
background-image: url("assets/devforge-hero.jpg");
background-size: cover;
background-position: center;
display: flex;
align-items: flex-start;
justify-content: flex-start;
padding-top: 180px;
padding-left: 520px;
margin-bottom: 0;
}
.hero-nav {
display: flex;
align-items: center;
gap: 48px;
}
.hero-nav a {
color: #fff;
text-decoration: none;
font-weight: 600;
}
/* SECOND HERO BAND WITH OWNER + ICONS (same layout as index) */
.owner-hero {
position: relative;
height: 240px;
background-image: url("assets/devforge-owner-hero.jpg");
background-size: cover;
background-position: center;
display: flex;
align-items: center;
justify-content: center;
padding: 0 2rem;
margin-bottom: 2.5rem;
}
.owner-links.hero-inner {
display: flex;
align-items: center;
justify-content: space-between;
width: 100%;
max-width: 1200px;
color: #e6f7ff;
}
.owner-text h1 {
font-size: 2.4rem;
margin-bottom: 0.5rem;
color: #e6f7ff;
}
.owner-text p {
font-size: 1rem;
max-width: 600px;
color: #e6f7ff;
}
.hero-right {
display: flex;
gap: 1.5rem;
}
.hero-icon {
display: flex;
flex-direction: column;
align-items: center;
gap: 0.35rem;
}
.hero-symbol {
display: inline-flex;
align-items: center;
justify-content: center;
width: 48px;
height: 48px;
border-radius: 50%;
background: rgba(0, 0, 0, 0.6);
color: #e6f7ff;
font-weight: 700;
font-size: 1rem;
}
.hero-icon a {
text-decoration: none;
}
.hero-label {
font-size: 0.85rem;
color: #e6f7ff;
}
/* Nav + toggle (match index) */
nav {
margin-bottom: 0;
display: flex;
gap: 2rem;
align-items: center;
}
nav a {
margin: 0;
color: #fff;
font-weight: 600;
text-decoration: none;
font-size: 1.2rem;
padding: 0.5rem 1rem;
transition: background 0.2s;
border-radius: 7px;
}
nav a:hover {
background: rgba(255, 255, 255, 0.15);
color: #ffe0b2;
}
.mode-toggle {
width: 40px;
height: 40px;
border-radius: 50%;
border: none;
background: rgba(255, 255, 255, 0.15);
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
transition: background 0.2s, transform 0.2s;
color: #fff;
font-size: 1.2rem;
}
.mode-toggle:hover {
background: rgba(255, 255, 255, 0.25);
transform: translateY(-1px);
}
body.dark-mode .mode-toggle {
background: rgba(0, 0, 0, 0.4);
}
/* Section layout */
section {
margin-bottom: 3rem;
padding: 0 1rem;
}
.section-title {
font-weight: 700;
font-size: 2rem;
margin-bottom: 1rem;
color: #0d6efd;
border-bottom: 3px solid #6610f2;
padding-bottom: 0.3rem;
max-width: fit-content;
}
.btn-custom {
background: #6610f2;
color: #ffffff;
padding: 0.75rem 1.5rem;
text-decoration: none;
border-radius: 7px;
font-weight: 600;
display: inline-block;
margin-top: 0.75rem;
}
.btn-custom:hover {
background: #0d6efd;
color: #fff;
text-decoration: none;
}
/* Service cards */
.service-card {
background: rgba(255, 255, 255, 0.9);
padding: 2rem;
border-radius: 12px;
margin-bottom: 2rem;
border-left: 5px solid #6610f2;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
body.dark-mode .service-card {
background: rgba(31, 41, 55, 0.9);
border-left-color: #8b5cf6;
}
.service-card h2 {
color: #1e40af;
margin: 0 0 0.5rem 0;
font-size: 1.5rem;
}
body.dark-mode .service-card h2 {
color: #60a5fa;
}
.service-meta {
font-size: 0.95rem;
color: #6b7280;
margin-bottom: 0.75rem;
}
body.dark-mode .service-meta {
color: #9ca3af;
}
/* Pricing list */
#pricing ul {
padding-left: 1.2rem;
}
#pricing li {
margin-bottom: 0.5rem;
}
/* Footer (same as index) */
footer {
padding: 2rem 0;
text-align: center;
color: #666;
background: #f8f9fa;
margin-top: 3rem;
border-top: 1px solid #e3e3e3;
font-size: 1rem;
}
footer a {
color: #6610f2;
text-decoration: underline;
}
footer a:hover {
color: #0d6efd;
}
body.dark-mode footer {
background: #181c21;
color: #aaa;
border-top: 1px solid #282c34;
}
#mode-logo {
height: 64px;
border-radius: 10px;
box-shadow: 0 2px 12px rgba(0,0,0,0.08);
display: block;
margin: 0 auto 0.75rem auto;
}
/* Desktop: hide mobile bar */
.mobile-nav {
display: none;
}
/* Mobile */
@media (max-width: 768px) {
.desktop-nav {
display: none;
}
.mobile-nav {
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: center;
gap: 0.3rem; /* was 0.75rem */
background: rgba(0, 0, 0, 0.85);
padding: 0.3rem 0.6rem; /* was 0.5rem 1rem */
width: 100%;
margin-bottom: 0.75rem;
}
.mobile-nav a {
color: #fff;
font-weight: 600;
text-decoration: none;
margin: 0 0.15rem; /* was 0.25rem */
font-size: 0.85rem; /* was 1rem */
white-space: nowrap;
}
.mobile-nav a:hover {
text-decoration: underline;
}
.mobile-nav .mode-toggle {
margin-left: 0.4rem; /* was 0.5rem */
}
/* Same mobile tweaks as index */
.hero-header {
height: 200px;
padding: 0 0.5rem;
align-items: center;
justify-content: center;
}
.owner-links.hero-inner {
flex-direction: column;
align-items: flex-start;
gap: 1.25rem;
}
.hero-right {
width: 100%;
justify-content: flex-start;
}
}
</style>
</head>
<body>
<!-- HERO WITH NAV -->
<header class="hero-header">
<nav class="hero-nav desktop-nav">
<a href="index.html">Home</a>
<a href="services.html" class="active">Services</a>
<a href="experience.html">Experience</a>
<a href="projects.html">Client Stories</a>
<a href="index.html#contact">Contact</a>
<button id="mode-toggle-desktop" class="mode-toggle theme-toggle" aria-label="Toggle light and dark mode">
<span class="icon">☀️</span>
</button>
</nav>
</header>
<!-- MOBILE NAV BAR -->
<nav class="mobile-nav">
<a href="index.html">Home</a>
<a href="services.html" class="active">Services</a>
<a href="experience.html">Experience</a>
<a href="projects.html">Client Stories</a>
<a href="index.html#contact">Contact</a>
<button id="mode-toggle-mobile" class="mode-toggle theme-toggle" aria-label="Toggle light and dark mode">
<span class="icon">☀️</span>
</button>
</nav>
<!-- OWNER HERO BAND -->
<section class="owner-hero">
<div class="owner-links hero-inner">
<div class="owner-text">
<h1>DevForge IT / Services</h1>
<p>Managed IT, cybersecurity, and web solutions for small teams who need a reliable tech partner.</p>
</div>
<div class="hero-right">
<div class="hero-icon">
<a href="https://www.linkedin.com/in/erik-j-v" target="_blank" rel="noopener noreferrer">
<span class="hero-symbol">in</span>
</a>
<span class="hero-label">LinkedIn</span>
</div>
<div class="hero-icon">
<a href="https://github.com/equicktruth-ctrl" target="_blank" rel="noopener noreferrer">
<span class="hero-symbol">{ }</span>
</a>
<span class="hero-label">GitHub</span>
</div>
<div class="hero-icon">
<a href="mailto:hello@devforge.it.com">
<span class="hero-symbol">@</span>
</a>
<span class="hero-label">Contact</span>
</div>
</div>
</div>
</section>
<main class="container">
<section id="services-intro">
<div class="section-title">How We Help</div>
<p>
DevForge IT works like a small, embedded tech team for our clients. Each service below is designed
to be simple to start, transparent on cost, and focused on keeping your systems reliable and secure.
</p>
</section>
<section id="services-list">
<div class="section-title">Core Services</div>
<div class="service-card">
<h2>🔧 Managed IT Support</h2>
<p class="service-meta">Remote-first support for laptops, Wi‑Fi, printers, and day‑to‑day issues.</p>
<p>
Ongoing help with devices, updates, troubleshooting, and everyday “my tech is broken” problems.
Ideal for small teams that need a reliable point of contact instead of a full in‑house IT hire.
</p>
<a href="mailto:hello@devforge.it.com?subject=Managed IT Support" class="btn-custom">
Get Managed IT Quote →
</a>
</div>
<div class="service-card">
<h2>🛡️ Cybersecurity Tune-Ups</h2>
<p class="service-meta">
Led by Dammie, a SOC-style analyst and CompTIA-certified cybersecurity specialist, focused on practical security for small teams.
</p>
<p>
We roll out password managers, MFA, backups, and phishing training, then lock down core accounts
and devices. You also get a simple written checklist so you know exactly what was hardened.
</p>
<a href="blog/post1.html" class="btn-custom">
Read “5 Security Wins” →
</a>
</div>
<section id="cybersecurity-visual" style="max-width: 900px; margin: 0 auto 2.5rem; padding: 0 20px; text-align:center;">
<img src="assets/services-cybersecurity.jpg"
alt="DevForge IT cybersecurity and monitoring visual"
style="width:100%; max-width:520px; border-radius:12px; box-shadow:0 10px 25px rgba(0,0,0,0.35);" />
</section>
<div class="service-card">
<h2>🌐 Small Business Websites</h2>
<p class="service-meta">Clean, fast sites like this one, with simple editing and clear structure.</p>
<p>
Modern, responsive websites that make your business look professional and are easy to maintain.
Built with HTML, CSS, and JavaScript, and connected to your domain, email, and basic analytics.
</p>
<a href="mailto:hello@devforge.it.com?subject=Website Project" class="btn-custom">
Start a Website Project →
</a>
</div>
<div class="service-card">
<h2>☁️ Cloud Setup & Automation</h2>
<p class="service-meta">Microsoft 365, SaaS tools, and small scripts to cut repetitive work.</p>
<p>
We organize your accounts, permissions, and shared files, then add small automations where they
save the most time—like intake forms, reminders, or hand‑offs between tools.
</p>
<a href="mailto:hello@devforge.it.com?subject=Cloud & Automation" class="btn-custom">
Request Cloud Audit →
</a>
</div>
</section>
<section id="pricing">
<div class="section-title">Simple Starting Points</div>
<ul>
<li><strong>Quick Fix Session:</strong> 1–2 hour remote help for urgent issues.</li>
<li><strong>Monthly Support:</strong> Light managed IT coverage for very small teams.</li>
<li><strong>Project-Based Work:</strong> Flat-fee website or cloud setup projects.</li>
</ul>
<p>
Every engagement starts with a short call or email to confirm fit, scope, and budget—no pressure,
no long-term contracts required.
</p>
<a href="mailto:hello@devforge.it.com?subject=Which service do I need?" class="btn-custom">
Ask Which Service Fits →
</a>
</section>
<section id="faq">
<div class="section-title">Quick Questions</div>
<ul style="list-style:none; padding-left:0; max-width:800px;">
<li style="margin-bottom:1rem;">
<strong>Do you work remotely?</strong><br />
Yes. Most of our work is done remotely, with on-site visits available when needed.
</li>
<li style="margin-bottom:1rem;">
<strong>Do I need a long-term contract?</strong><br />
No. We start with simple, project-based or month-to-month agreements so small teams can try us without a big commitment.
</li>
<li style="margin-bottom:1rem;">
<strong>Can you work with my existing tools?</strong><br />
Yes. We plug into what you already use—Microsoft 365, Teams, cloud apps, and your current security stack—then improve from there.
</li>
<li style="margin-bottom:1rem;">
<strong>Who actually does the work?</strong><br />
All services are delivered by Erik (IT ops & web) and Dammie (SOC-style cybersecurity), not a rotating help desk.
</li>
</ul>
</section>
</main>
<footer>
<img id="mode-logo" src="assets/logo_lightmode_onheader.png" alt="DevForge IT logo" />
<div>
Built with HTML, CSS & JavaScript in VS Code • Deployed from GitHub to our live DevForge IT site
</div>
</footer>
<!-- Shared light/dark toggle logic (same pattern as index) -->
<script>
document.addEventListener('DOMContentLoaded', function () {
const toggleButtons = document.querySelectorAll('.theme-toggle');
const body = document.body;
const logo = document.getElementById('mode-logo');
function updateLogo() {
if (!logo) return;
if (body.classList.contains('dark-mode')) {
logo.src = 'assets/logo_darkmode_onheader.png';
} else {
logo.src = 'assets/logo_lightmode_onheader.png';
}
}
function updateIcons() {
toggleButtons.forEach(btn => {
const iconSpan = btn.querySelector('.icon');
if (!iconSpan) return;
iconSpan.textContent = body.classList.contains('dark-mode') ? '🌙' : '☀️';
});
}
if (localStorage.getItem('theme') === 'dark') {
body.classList.add('dark-mode');
}
updateLogo();
updateIcons();
toggleButtons.forEach(btn => {
btn.addEventListener('click', function () {
body.classList.toggle('dark-mode');
localStorage.setItem(
'theme',
body.classList.contains('dark-mode') ? 'dark' : 'light'
);
updateLogo();
updateIcons();
});
});
});
</script>
</body>
</html>