@networkpro/web 1.19.0 → 1.20.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/workflows/build-and-publish.yml +5 -4
- package/.github/workflows/lighthouse.yml +1 -1
- package/.github/workflows/meta-check.yml +1 -1
- package/.github/workflows/playwright.yml +1 -1
- package/.github/workflows/publish-test.yml +5 -4
- package/.github/workflows/templates/publish.template.yml +5 -4
- package/CHANGELOG.md +82 -1
- package/cspell.json +3 -0
- package/package.json +16 -16
- package/scripts/auditScripts.js +1 -1
- package/scripts/bundleCss.js +1 -1
- package/scripts/checkEnv.js +1 -1
- package/scripts/checkNode.js +1 -1
- package/scripts/checkVersions.js +1 -1
- package/scripts/generateTest.js +1 -1
- package/scripts/openReport.js +1 -1
- package/src/app.html +3 -6
- package/src/hooks.server.js +10 -7
- package/src/lib/components/ServiceSummaryTable.svelte +113 -0
- package/src/lib/components/index.js +2 -1
- package/src/lib/components/layout/HeaderDefault.svelte +3 -1
- package/src/lib/components/layout/HeaderHome.svelte +6 -5
- package/src/lib/images.js +1 -1
- package/src/lib/index.js +2 -2
- package/src/lib/meta.js +14 -9
- package/src/lib/pages/AboutContent.svelte +26 -10
- package/src/lib/pages/HomeContent.svelte +11 -1
- package/src/lib/pages/LicenseContent.svelte +3 -3
- package/src/lib/pages/PrivacyContent.svelte +31 -1
- package/src/lib/pages/ServicesContent.svelte +545 -0
- package/src/lib/pages/index.js +2 -1
- package/src/lib/stores/posthog.js +2 -1
- package/src/lib/styles/css/default.css +88 -0
- package/src/lib/styles/global.min.css +1 -3
- package/src/lib/types/appConstants.js +1 -1
- package/src/lib/types/fossTypes.js +1 -1
- package/src/lib/utils/getUTMParams.js +1 -1
- package/src/lib/utils/purify.js +1 -1
- package/src/lib/utils/redirect.js +1 -1
- package/src/lib/utils/utm.js +2 -2
- package/src/routes/+layout.svelte +0 -2
- package/src/routes/consultation/+page.svelte +1 -1
- package/src/routes/services/+page.server.js +18 -0
- package/src/routes/services/+page.svelte +65 -0
- package/src/routes/status/+page.server.js +1 -1
- package/src/service-worker.js +2 -2
- package/static/bin/contact.vcf +1 -2
- package/static/disableSw.js +1 -1
- package/static/sitemap.xml +17 -5
- package/tests/e2e/app.spec.js +1 -1
- package/tests/e2e/mobile.spec.js +1 -1
- package/tests/e2e/shared/helpers.js +1 -1
- package/tests/meta/meta.test.js +1 -1
- package/tests/unit/client/lib/PWAInstallButton.test.js +1 -1
- package/tests/unit/client/lib/utils/redirect.test.js +1 -1
- package/tests/unit/server/internal/auditCoverage.test.js +1 -1
- package/tests/unit/server/lib/utils/purify.test.js +1 -1
- package/tests/unit/server/meta.test.js +1 -1
- package/vercel.json +12 -0
|
@@ -0,0 +1,545 @@
|
|
|
1
|
+
<!-- ==========================================================================
|
|
2
|
+
src/lib/pages/ServicesContent.svelte
|
|
3
|
+
|
|
4
|
+
Copyright © 2025 Network Pro Strategies (Network Pro™)
|
|
5
|
+
SPDX-License-Identifier: CC-BY-4.0 OR GPL-3.0-or-later
|
|
6
|
+
This file is part of Network Pro.
|
|
7
|
+
=========================================================================== -->
|
|
8
|
+
|
|
9
|
+
<script>
|
|
10
|
+
import { base } from '$app/paths';
|
|
11
|
+
import { CONSTANTS } from '$lib';
|
|
12
|
+
import { ServiceSummaryTable } from '$lib/components';
|
|
13
|
+
|
|
14
|
+
// Log the base path to verify its value
|
|
15
|
+
//console.log("Base path:", base);
|
|
16
|
+
|
|
17
|
+
//console.log(CONSTANTS.COMPANY_INFO.APP_NAME);
|
|
18
|
+
|
|
19
|
+
const { COMPANY_INFO, CONTACT, PAGE, LINKS, NAV } = CONSTANTS;
|
|
20
|
+
|
|
21
|
+
/**
|
|
22
|
+
* URLs using the base path
|
|
23
|
+
* @type {string}
|
|
24
|
+
*/
|
|
25
|
+
const contactLink = `${base}/contact`;
|
|
26
|
+
const consultLink = `${base}/consultation`;
|
|
27
|
+
|
|
28
|
+
/**
|
|
29
|
+
* Table of Contents Links
|
|
30
|
+
* @type {{ id: string, text: string }[]}
|
|
31
|
+
*/
|
|
32
|
+
const tocLinks = [
|
|
33
|
+
{ id: 'modem', text: 'Home Modem Setup - $99.99' },
|
|
34
|
+
{ id: 'basic', text: 'Basic Router Setup - $99.99' },
|
|
35
|
+
{ id: 'wifi', text: 'Wi-Fi and Wireless Networking Setup - $149.99' },
|
|
36
|
+
{ id: 'tshoot', text: 'Network Troubleshooting - $49.99+' },
|
|
37
|
+
{ id: 'security', text: 'Network Security Review - $79.99' },
|
|
38
|
+
{ id: 'device', text: 'Add a Wi-Fi Device - $34.99' },
|
|
39
|
+
{ id: 'print', text: 'Add or Configure a Printer - $74.99' },
|
|
40
|
+
];
|
|
41
|
+
|
|
42
|
+
/**
|
|
43
|
+
* Constants for reusable content
|
|
44
|
+
* @type {{ effectiveDate: string, classSmall: string }}
|
|
45
|
+
*/
|
|
46
|
+
const constants = {
|
|
47
|
+
effectiveDate: 'October 18, 2025',
|
|
48
|
+
classSmall: 'small-text',
|
|
49
|
+
};
|
|
50
|
+
</script>
|
|
51
|
+
|
|
52
|
+
<!-- BEGIN TITLE -->
|
|
53
|
+
<section id="top">
|
|
54
|
+
<span class={constants.classSmall}>
|
|
55
|
+
<a
|
|
56
|
+
rel={PAGE.REL}
|
|
57
|
+
href="https://spdx.dev/learn/handling-license-info"
|
|
58
|
+
target={PAGE.BLANK}>
|
|
59
|
+
SPDX License Identifier
|
|
60
|
+
</a>: <code>CC-BY-4.0 OR GPL-3.0-or-later</code>
|
|
61
|
+
</span>
|
|
62
|
+
</section>
|
|
63
|
+
|
|
64
|
+
<section id="page-title">
|
|
65
|
+
<h1>On-Site Services</h1>
|
|
66
|
+
<p>
|
|
67
|
+
<strong>{COMPANY_INFO.NAME}</strong><br />
|
|
68
|
+
<strong>Effective Date:</strong>
|
|
69
|
+
{constants.effectiveDate}
|
|
70
|
+
</p>
|
|
71
|
+
</section>
|
|
72
|
+
<!-- END TITLE -->
|
|
73
|
+
|
|
74
|
+
<!-- BEGIN SERVICES -->
|
|
75
|
+
|
|
76
|
+
<ServiceSummaryTable />
|
|
77
|
+
|
|
78
|
+
<div class="spacer"></div>
|
|
79
|
+
|
|
80
|
+
<p> </p>
|
|
81
|
+
|
|
82
|
+
<p>
|
|
83
|
+
If you're a business seeking similar on-site solutions, we've got you covered!
|
|
84
|
+
We offer tailored services to meet the unique needs of commercial clients as
|
|
85
|
+
well. Simply <a href={consultLink} target={PAGE.BLANK}
|
|
86
|
+
>schedule a consultation</a>
|
|
87
|
+
or <a href={contactLink} target={PAGE.BLANK}>contact us directly</a> — we'd be
|
|
88
|
+
happy to discuss how {COMPANY_INFO.APP_NAME}™ can support your business
|
|
89
|
+
on-site.
|
|
90
|
+
</p>
|
|
91
|
+
|
|
92
|
+
<p>
|
|
93
|
+
<strong>{COMPANY_INFO.NAME}</strong><br />
|
|
94
|
+
📞 Phone: {CONTACT.PHONE}<br />
|
|
95
|
+
📧 General Inquiries: {CONTACT.EMAIL}<br />
|
|
96
|
+
</p>
|
|
97
|
+
|
|
98
|
+
<div class="spacer"></div>
|
|
99
|
+
|
|
100
|
+
<hr />
|
|
101
|
+
|
|
102
|
+
{#each tocLinks as link, i}
|
|
103
|
+
<section id={link.id}>
|
|
104
|
+
<h2>{link.text}</h2>
|
|
105
|
+
|
|
106
|
+
{#if link.id === 'modem'}
|
|
107
|
+
<p>
|
|
108
|
+
We'll connect and activate your compatible cable or fiber modem, confirm
|
|
109
|
+
the signal and service link are stable, and verify your internet speeds
|
|
110
|
+
after activation.<br />
|
|
111
|
+
Our technician will ensure your modem is configured securely, confirm proper
|
|
112
|
+
communication with your provider, and provide a short performance summary.
|
|
113
|
+
</p>
|
|
114
|
+
<p>
|
|
115
|
+
<em
|
|
116
|
+
>(Line quality and outside wiring are the responsibility of your
|
|
117
|
+
internet provider. This service does not include network or additional
|
|
118
|
+
hardware setup, configuration, repair, or troubleshooting. Wire runs,
|
|
119
|
+
terminations, and shared device functionality are excluded. Additional
|
|
120
|
+
travel charges may apply beyond standard coverage areas. Installation
|
|
121
|
+
services are non-refundable once completed.)</em>
|
|
122
|
+
</p>
|
|
123
|
+
|
|
124
|
+
<ul>
|
|
125
|
+
<li
|
|
126
|
+
><strong>Physical Setup & Activation</strong>
|
|
127
|
+
<ul>
|
|
128
|
+
<li>Connect modem to existing ISP line</li>
|
|
129
|
+
<li>Verify power, link, and WAN light status</li>
|
|
130
|
+
<li>Assist with ISP activation or self-install portal</li>
|
|
131
|
+
</ul>
|
|
132
|
+
</li>
|
|
133
|
+
<li
|
|
134
|
+
><strong>Configuration & Optimization</strong>
|
|
135
|
+
<ul>
|
|
136
|
+
<li>Access modem GUI and update firmware</li>
|
|
137
|
+
<li>Change admin credentials for security</li>
|
|
138
|
+
<li>Configure bridge or router mode if required</li>
|
|
139
|
+
</ul>
|
|
140
|
+
</li>
|
|
141
|
+
<li
|
|
142
|
+
><strong>Verification & Documentation</strong>
|
|
143
|
+
<ul>
|
|
144
|
+
<li>Run baseline speed and latency tests</li>
|
|
145
|
+
<li>Verify public IP and DNS resolution</li>
|
|
146
|
+
<li>Provide post-install summary</li>
|
|
147
|
+
</ul>
|
|
148
|
+
</li>
|
|
149
|
+
<li
|
|
150
|
+
><strong>Optional Add-Ons</strong>
|
|
151
|
+
<ul>
|
|
152
|
+
<li>Connect and configure wired or Wi-Fi router</li>
|
|
153
|
+
<li>Assist with SSID, guest network, and device setup</li>
|
|
154
|
+
<li>Provide customer education and best practices</li>
|
|
155
|
+
</ul>
|
|
156
|
+
</li>
|
|
157
|
+
</ul>
|
|
158
|
+
{:else if link.id === 'basic'}
|
|
159
|
+
<p>
|
|
160
|
+
We'll set up and connect your wired network router to ensure stable
|
|
161
|
+
connectivity, proper LAN configuration, and optimized performance across
|
|
162
|
+
your devices.<br />
|
|
163
|
+
Our technician will verify link integrity, confirm routing and DHCP functionality,
|
|
164
|
+
and make sure your wired devices can access the internet reliably.
|
|
165
|
+
</p>
|
|
166
|
+
|
|
167
|
+
<p>
|
|
168
|
+
<em>
|
|
169
|
+
(Line quality and outside wiring are the responsibility of your
|
|
170
|
+
internet provider. This service does not include Wi-Fi configuration,
|
|
171
|
+
wireless troubleshooting, or advanced network setup. Wire runs,
|
|
172
|
+
terminations, and shared device functionality are excluded. Additional
|
|
173
|
+
travel charges may apply beyond standard coverage areas. Installation
|
|
174
|
+
services are non-refundable once completed.)
|
|
175
|
+
</em>
|
|
176
|
+
</p>
|
|
177
|
+
|
|
178
|
+
<ul>
|
|
179
|
+
<li>
|
|
180
|
+
<strong>Physical Setup & Connection</strong>
|
|
181
|
+
<ul>
|
|
182
|
+
<li>Connect router to modem or upstream network device</li>
|
|
183
|
+
<li>Verify power, link, and Ethernet activity status</li>
|
|
184
|
+
<li>Connect up to four wired client devices</li>
|
|
185
|
+
</ul>
|
|
186
|
+
</li>
|
|
187
|
+
|
|
188
|
+
<li>
|
|
189
|
+
<strong>Configuration & Optimization</strong>
|
|
190
|
+
<ul>
|
|
191
|
+
<li>Access router admin interface and check firmware version</li>
|
|
192
|
+
<li>Update firmware if available and supported</li>
|
|
193
|
+
<li>Change default admin credentials and secure local access</li>
|
|
194
|
+
<li>Configure LAN IP range and DHCP settings</li>
|
|
195
|
+
</ul>
|
|
196
|
+
</li>
|
|
197
|
+
|
|
198
|
+
<li>
|
|
199
|
+
<strong>Verification & Documentation</strong>
|
|
200
|
+
<ul>
|
|
201
|
+
<li>Confirm internet access and routing functionality</li>
|
|
202
|
+
<li>Test connectivity to each connected device</li>
|
|
203
|
+
<li>Provide post-setup performance and security summary</li>
|
|
204
|
+
</ul>
|
|
205
|
+
</li>
|
|
206
|
+
|
|
207
|
+
<li>
|
|
208
|
+
<strong>Optional Add-Ons</strong>
|
|
209
|
+
<ul>
|
|
210
|
+
<li>Set up Wi-Fi router or mesh system</li>
|
|
211
|
+
<li>Configure static IP, DNS, or port forwarding rules</li>
|
|
212
|
+
<li>Provide network diagram or configuration backup</li>
|
|
213
|
+
</ul>
|
|
214
|
+
</li>
|
|
215
|
+
</ul>
|
|
216
|
+
{:else if link.id === 'wifi'}
|
|
217
|
+
<p>
|
|
218
|
+
We'll set up and configure your wireless network to ensure secure,
|
|
219
|
+
reliable, and optimized Wi-Fi coverage throughout your home or office.<br />
|
|
220
|
+
Our technician will connect and position your access point or router, establish
|
|
221
|
+
secure wireless credentials, and verify signal strength and device connectivity.
|
|
222
|
+
</p>
|
|
223
|
+
|
|
224
|
+
<p>
|
|
225
|
+
<em>
|
|
226
|
+
(Line quality and outside wiring are the responsibility of your
|
|
227
|
+
internet provider. This service does not include advanced network
|
|
228
|
+
design, infrastructure cabling, or mesh node installation unless
|
|
229
|
+
specified. Wall runs, device repairs, and shared file or print
|
|
230
|
+
services are excluded. Additional travel charges may apply beyond
|
|
231
|
+
standard coverage areas. Installation services are non-refundable once
|
|
232
|
+
completed.)
|
|
233
|
+
</em>
|
|
234
|
+
</p>
|
|
235
|
+
|
|
236
|
+
<ul>
|
|
237
|
+
<li>
|
|
238
|
+
<strong>Physical Setup & Connection</strong>
|
|
239
|
+
<ul>
|
|
240
|
+
<li
|
|
241
|
+
>Connect wireless router or access point to modem or network
|
|
242
|
+
switch</li>
|
|
243
|
+
<li>Verify power, WAN, and wireless activity indicators</li>
|
|
244
|
+
<li>Position router or access point for optimal signal coverage</li>
|
|
245
|
+
</ul>
|
|
246
|
+
</li>
|
|
247
|
+
|
|
248
|
+
<li>
|
|
249
|
+
<strong>Configuration & Optimization</strong>
|
|
250
|
+
<ul>
|
|
251
|
+
<li>Access router or access point management interface</li>
|
|
252
|
+
<li>Update firmware and adjust transmit power if applicable</li>
|
|
253
|
+
<li>Create or change SSID and secure with WPA2/WPA3 encryption</li>
|
|
254
|
+
<li
|
|
255
|
+
>Set up guest network and parental or access controls as requested</li>
|
|
256
|
+
</ul>
|
|
257
|
+
</li>
|
|
258
|
+
|
|
259
|
+
<li>
|
|
260
|
+
<strong>Verification & Documentation</strong>
|
|
261
|
+
<ul>
|
|
262
|
+
<li>Test Wi-Fi connectivity on multiple devices</li>
|
|
263
|
+
<li>Confirm internet access and expected throughput</li>
|
|
264
|
+
<li>Measure and document signal strength in key locations</li>
|
|
265
|
+
<li>Provide post-setup summary and optimization recommendations</li>
|
|
266
|
+
</ul>
|
|
267
|
+
</li>
|
|
268
|
+
|
|
269
|
+
<li>
|
|
270
|
+
<strong>Optional Add-Ons</strong>
|
|
271
|
+
<ul>
|
|
272
|
+
<li>Extend coverage with additional access points or mesh nodes</li>
|
|
273
|
+
<li>Assist with smart home or IoT device integration</li>
|
|
274
|
+
<li>Provide on-site Wi-Fi optimization or interference analysis</li>
|
|
275
|
+
</ul>
|
|
276
|
+
</li>
|
|
277
|
+
</ul>
|
|
278
|
+
{:else if link.id === 'tshoot'}
|
|
279
|
+
<p>
|
|
280
|
+
<strong>Pricing:</strong> $49.99 + (includes initial 30-minute
|
|
281
|
+
diagnostic)<br />
|
|
282
|
+
<strong>Hourly rate:</strong> $79/hour thereafter
|
|
283
|
+
</p>
|
|
284
|
+
|
|
285
|
+
<p>
|
|
286
|
+
Experiencing slow Wi-Fi, dropped connections, or devices that won't stay
|
|
287
|
+
online? Our technician will diagnose and resolve connectivity issues
|
|
288
|
+
with your home or small-office network, ensuring stable, optimized
|
|
289
|
+
performance across your devices.
|
|
290
|
+
</p>
|
|
291
|
+
|
|
292
|
+
<p>
|
|
293
|
+
This service focuses on diagnosing and resolving network-layer
|
|
294
|
+
connectivity problems, not general PC repair. Supported platforms
|
|
295
|
+
include Windows 7 and later (Windows 10/11 recommended),
|
|
296
|
+
macOS, iOS, and Android. Legacy systems are supported on a best-effort
|
|
297
|
+
basis.
|
|
298
|
+
</p>
|
|
299
|
+
|
|
300
|
+
<p>
|
|
301
|
+
<em>
|
|
302
|
+
(Excludes hardware repair, operating system or driver installation,
|
|
303
|
+
and malware removal. Additional hourly charges may apply beyond the
|
|
304
|
+
initial 30-minute diagnostic period. Line quality and outside wiring
|
|
305
|
+
remain the responsibility of your internet provider.)
|
|
306
|
+
</em>
|
|
307
|
+
</p>
|
|
308
|
+
|
|
309
|
+
<ul>
|
|
310
|
+
<li>
|
|
311
|
+
<strong>Diagnosis & Verification</strong>
|
|
312
|
+
<ul>
|
|
313
|
+
<li>Test modem, router, and connected devices</li>
|
|
314
|
+
<li>Verify LAN/WAN connectivity and signal quality</li>
|
|
315
|
+
<li>Check for DHCP, IP, and DNS conflicts</li>
|
|
316
|
+
</ul>
|
|
317
|
+
</li>
|
|
318
|
+
<li>
|
|
319
|
+
<strong>Resolution & Optimization</strong>
|
|
320
|
+
<ul>
|
|
321
|
+
<li>Reconfigure router or device settings as needed</li>
|
|
322
|
+
<li>Optimize Wi-Fi channels and coverage</li>
|
|
323
|
+
<li>Assist with ISP escalation if signal issues are detected</li>
|
|
324
|
+
</ul>
|
|
325
|
+
</li>
|
|
326
|
+
<li>
|
|
327
|
+
<strong>Verification & Documentation</strong>
|
|
328
|
+
<ul>
|
|
329
|
+
<li>Confirm stable connectivity and device access</li>
|
|
330
|
+
<li>Provide a brief summary of findings and recommendations</li>
|
|
331
|
+
</ul>
|
|
332
|
+
</li>
|
|
333
|
+
<li>
|
|
334
|
+
<strong>Limitations</strong>
|
|
335
|
+
<ul>
|
|
336
|
+
<li
|
|
337
|
+
>Excludes hardware repair, driver installation, and malware
|
|
338
|
+
removal</li>
|
|
339
|
+
<li
|
|
340
|
+
>Legacy systems (Windows 7—8.1) supported on a best-effort
|
|
341
|
+
basis</li>
|
|
342
|
+
<li
|
|
343
|
+
>Additional hourly charges apply beyond the first 30 minutes</li>
|
|
344
|
+
</ul>
|
|
345
|
+
</li>
|
|
346
|
+
</ul>
|
|
347
|
+
{:else if link.id === 'security'}
|
|
348
|
+
<p>
|
|
349
|
+
<strong>Pricing:</strong> $79.99 (standard consumer routers;
|
|
350
|
+
approximately 60–75 minutes)<br />
|
|
351
|
+
<strong>Additional time:</strong> $49/hour for advanced customization, multi-router
|
|
352
|
+
setups, or extended security configuration
|
|
353
|
+
</p>
|
|
354
|
+
|
|
355
|
+
<p>
|
|
356
|
+
We'll perform a complete review of your home network's security posture,
|
|
357
|
+
focusing on your router, wireless access points, and connected devices.
|
|
358
|
+
Our technician will check for insecure configurations, weak encryption,
|
|
359
|
+
or outdated firmware, and implement security best practices to help
|
|
360
|
+
safeguard your home and personal data.
|
|
361
|
+
</p>
|
|
362
|
+
|
|
363
|
+
<p>
|
|
364
|
+
<em>
|
|
365
|
+
(This service does not include repairs or full system reconfiguration
|
|
366
|
+
outside basic router and network settings. Hardware or software
|
|
367
|
+
replacements, device-specific vulnerability remediation, or advanced
|
|
368
|
+
penetration testing are not included. Additional travel charges may
|
|
369
|
+
apply beyond standard coverage areas. Installation and configuration
|
|
370
|
+
services are non-refundable once completed.)
|
|
371
|
+
</em>
|
|
372
|
+
</p>
|
|
373
|
+
|
|
374
|
+
<ul>
|
|
375
|
+
<li>
|
|
376
|
+
<strong>Network & Device Assessment</strong>
|
|
377
|
+
<ul>
|
|
378
|
+
<li>Inspect router and Wi-Fi security settings</li>
|
|
379
|
+
<li>Confirm WPA2/WPA3 encryption is enabled</li>
|
|
380
|
+
<li>Identify devices with insecure or default credentials</li>
|
|
381
|
+
</ul>
|
|
382
|
+
</li>
|
|
383
|
+
|
|
384
|
+
<li>
|
|
385
|
+
<strong>Configuration & Hardening</strong>
|
|
386
|
+
<ul>
|
|
387
|
+
<li>Change default admin passwords and SSIDs if necessary</li>
|
|
388
|
+
<li
|
|
389
|
+
>Ensure remote management, WPS, and UPnP are properly disabled</li>
|
|
390
|
+
<li>Recommend guest and IoT network separation</li>
|
|
391
|
+
</ul>
|
|
392
|
+
</li>
|
|
393
|
+
|
|
394
|
+
<li>
|
|
395
|
+
<strong>Verification & Recommendations</strong>
|
|
396
|
+
<ul>
|
|
397
|
+
<li
|
|
398
|
+
>Check for open ports, file shares, or other exposed services</li>
|
|
399
|
+
<li>Confirm firmware versions and advise on available updates</li>
|
|
400
|
+
<li
|
|
401
|
+
>Provide a written summary with security improvement suggestions</li>
|
|
402
|
+
</ul>
|
|
403
|
+
</li>
|
|
404
|
+
|
|
405
|
+
<li>
|
|
406
|
+
<strong>Optional Add-Ons</strong>
|
|
407
|
+
<ul>
|
|
408
|
+
<li
|
|
409
|
+
>Set up guest or IoT VLANs (if router supports VLAN segmentation)</li>
|
|
410
|
+
<li
|
|
411
|
+
>Install and configure network monitoring or parental control
|
|
412
|
+
tools</li>
|
|
413
|
+
<li>Assist with secure remote access (VPN or WireGuard setup)</li>
|
|
414
|
+
</ul>
|
|
415
|
+
</li>
|
|
416
|
+
</ul>
|
|
417
|
+
{:else if link.id === 'device'}
|
|
418
|
+
<p>
|
|
419
|
+
<strong>Pricing:</strong> $34.99 (includes connection and verification
|
|
420
|
+
for one device)<br />
|
|
421
|
+
<strong>Additional devices:</strong> $19.99 each (excluding printers)
|
|
422
|
+
</p>
|
|
423
|
+
|
|
424
|
+
<p>
|
|
425
|
+
We'll connect your new wireless device—such as a smart TV, streaming
|
|
426
|
+
player, game console, or IoT accessory—to your home Wi-Fi network and
|
|
427
|
+
verify connectivity. Our technician will ensure the device connects
|
|
428
|
+
securely and confirm internet access and app functionality where
|
|
429
|
+
applicable.
|
|
430
|
+
</p>
|
|
431
|
+
|
|
432
|
+
<p>
|
|
433
|
+
<em>
|
|
434
|
+
(Service excludes network or router reconfiguration, printer setup, or
|
|
435
|
+
troubleshooting of incompatible devices. Additional travel charges may
|
|
436
|
+
apply beyond standard coverage areas. Installation and connection
|
|
437
|
+
services are non-refundable once completed.)
|
|
438
|
+
</em>
|
|
439
|
+
</p>
|
|
440
|
+
|
|
441
|
+
<ul>
|
|
442
|
+
<li
|
|
443
|
+
><strong>Device Connection & Setup</strong>
|
|
444
|
+
<ul>
|
|
445
|
+
<li>Connect new device to existing Wi-Fi network</li>
|
|
446
|
+
<li>Verify signal strength and connectivity</li>
|
|
447
|
+
<li>Test online access or app functionality</li>
|
|
448
|
+
</ul>
|
|
449
|
+
</li>
|
|
450
|
+
|
|
451
|
+
<li
|
|
452
|
+
><strong>Configuration & Optimization</strong>
|
|
453
|
+
<ul>
|
|
454
|
+
<li>Adjust network settings if necessary for secure connection</li>
|
|
455
|
+
<li
|
|
456
|
+
>Ensure WPA2/WPA3 compatibility and disable insecure features</li>
|
|
457
|
+
<li>Provide basic orientation for operation or app setup</li>
|
|
458
|
+
</ul>
|
|
459
|
+
</li>
|
|
460
|
+
|
|
461
|
+
<li
|
|
462
|
+
><strong>Optional Add-Ons</strong>
|
|
463
|
+
<ul>
|
|
464
|
+
<li
|
|
465
|
+
>Connect additional devices ($19.99 each, excluding printers)</li>
|
|
466
|
+
<li>Set up parental controls or device access restrictions</li>
|
|
467
|
+
<li>Assist with smart home or voice assistant integration</li>
|
|
468
|
+
</ul>
|
|
469
|
+
</li>
|
|
470
|
+
</ul>
|
|
471
|
+
{:else if link.id === 'print'}
|
|
472
|
+
<p>
|
|
473
|
+
<strong>Pricing:</strong> $74.99 (includes installation and
|
|
474
|
+
configuration for one printer)<br />
|
|
475
|
+
<strong>Additional devices:</strong> $19.99 each (for printer setup on extra
|
|
476
|
+
computers or mobile devices)
|
|
477
|
+
</p>
|
|
478
|
+
|
|
479
|
+
<p>
|
|
480
|
+
We'll install and configure your wired or wireless printer for use on
|
|
481
|
+
your home network, verify that it prints correctly, and connect it to
|
|
482
|
+
your computers or mobile devices. Our technician will ensure the printer
|
|
483
|
+
is properly connected, configured, and accessible from your preferred
|
|
484
|
+
devices.
|
|
485
|
+
</p>
|
|
486
|
+
|
|
487
|
+
<p>
|
|
488
|
+
<em>
|
|
489
|
+
(This service includes setup and connection of a single printer. It
|
|
490
|
+
does not include in-depth troubleshooting of hardware faults, print
|
|
491
|
+
driver conflicts, or advanced network security configuration. For
|
|
492
|
+
extended security auditing or multi-device configuration, please refer
|
|
493
|
+
to our <a href="#security">Network Security Review</a> service. Additional
|
|
494
|
+
travel charges may apply beyond standard coverage areas. Installation and
|
|
495
|
+
configuration services are non-refundable once completed.)
|
|
496
|
+
</em>
|
|
497
|
+
</p>
|
|
498
|
+
|
|
499
|
+
<ul>
|
|
500
|
+
<li
|
|
501
|
+
><strong>Printer Setup & Connection</strong>
|
|
502
|
+
<ul>
|
|
503
|
+
<li>Unpack, position, and power on the printer</li>
|
|
504
|
+
<li>Connect via Wi-Fi, Ethernet, or USB</li>
|
|
505
|
+
<li>Join printer to existing wireless network (if applicable)</li>
|
|
506
|
+
</ul>
|
|
507
|
+
</li>
|
|
508
|
+
|
|
509
|
+
<li
|
|
510
|
+
><strong>Configuration & Verification</strong>
|
|
511
|
+
<ul>
|
|
512
|
+
<li>Install and configure necessary printer software or drivers</li>
|
|
513
|
+
<li>Perform a test print to verify connectivity</li>
|
|
514
|
+
<li
|
|
515
|
+
>Confirm wireless printing functionality from supported devices</li>
|
|
516
|
+
</ul>
|
|
517
|
+
</li>
|
|
518
|
+
|
|
519
|
+
<li
|
|
520
|
+
><strong>Optional Add-Ons</strong>
|
|
521
|
+
<ul>
|
|
522
|
+
<li
|
|
523
|
+
>Connect additional computers or mobile devices ($19.99 each)</li>
|
|
524
|
+
<li>Configure scan-to-email or cloud printing features</li>
|
|
525
|
+
<li
|
|
526
|
+
>Secure wireless printer setup (via <a href="#security"
|
|
527
|
+
>Network Security Review</a
|
|
528
|
+
>)</li>
|
|
529
|
+
</ul>
|
|
530
|
+
</li>
|
|
531
|
+
</ul>
|
|
532
|
+
{/if}
|
|
533
|
+
|
|
534
|
+
<span class={constants.classSmall}>
|
|
535
|
+
<a href={NAV.HREFTOP}>{NAV.BACKTOP}</a>
|
|
536
|
+
</span>
|
|
537
|
+
|
|
538
|
+
<div class="spacer"></div>
|
|
539
|
+
|
|
540
|
+
{#if i < tocLinks.length - 1}
|
|
541
|
+
<hr />
|
|
542
|
+
{/if}
|
|
543
|
+
</section>
|
|
544
|
+
{/each}
|
|
545
|
+
<!-- END SERVICES -->
|
package/src/lib/pages/index.js
CHANGED
|
@@ -12,7 +12,7 @@ This file is part of Network Pro.
|
|
|
12
12
|
* @file index.js
|
|
13
13
|
* @description Export point for Svelte pages
|
|
14
14
|
* @module src/lib/pages
|
|
15
|
-
* @author
|
|
15
|
+
* @author Scott Lopez
|
|
16
16
|
* @updated 2025-10-05
|
|
17
17
|
*/
|
|
18
18
|
|
|
@@ -23,5 +23,6 @@ export { default as LicenseContent } from './LicenseContent.svelte';
|
|
|
23
23
|
export { default as PGPContent } from './PGPContent.svelte';
|
|
24
24
|
export { default as PrivacyContent } from './PrivacyContent.svelte';
|
|
25
25
|
export { default as PrivacyDashboard } from './PrivacyDashboard.svelte';
|
|
26
|
+
export { default as ServicesContent } from './ServicesContent.svelte';
|
|
26
27
|
export { default as TermsConditionsContent } from './TermsConditionsContent.svelte';
|
|
27
28
|
export { default as TermsUseContent } from './TermsUseContent.svelte';
|
|
@@ -58,7 +58,8 @@ export async function initPostHog() {
|
|
|
58
58
|
|
|
59
59
|
// cspell:disable-next-line
|
|
60
60
|
ph.init('phc_Qshfo6AXzh4pS7aPigfqyeo4qj1qlyh7gDuHDeVMSR0', {
|
|
61
|
-
api_host: '
|
|
61
|
+
api_host: '/relay-MSR0/',
|
|
62
|
+
ui_host: 'https://us.posthog.com',
|
|
62
63
|
autocapture: true,
|
|
63
64
|
capture_pageview: false,
|
|
64
65
|
person_profiles: 'identified_only',
|
|
@@ -316,6 +316,80 @@ footer .container {
|
|
|
316
316
|
}
|
|
317
317
|
}
|
|
318
318
|
|
|
319
|
+
#service-summary {
|
|
320
|
+
color: #e6e6e6;
|
|
321
|
+
margin-bottom: 2.5rem;
|
|
322
|
+
margin-top: 2rem;
|
|
323
|
+
}
|
|
324
|
+
|
|
325
|
+
.service-table {
|
|
326
|
+
width: 100%;
|
|
327
|
+
font-size: 0.95rem;
|
|
328
|
+
color: #e6e6e6;
|
|
329
|
+
background-color: #191919;
|
|
330
|
+
border-collapse: collapse;
|
|
331
|
+
}
|
|
332
|
+
|
|
333
|
+
.service-table th,
|
|
334
|
+
.service-table td {
|
|
335
|
+
padding: 0.75rem 1rem;
|
|
336
|
+
text-align: left;
|
|
337
|
+
border-bottom: 1px solid #333;
|
|
338
|
+
vertical-align: top;
|
|
339
|
+
}
|
|
340
|
+
|
|
341
|
+
.service-table th {
|
|
342
|
+
font-size: 0.85rem;
|
|
343
|
+
font-weight: 600;
|
|
344
|
+
color: #ffc627;
|
|
345
|
+
background-color: #222;
|
|
346
|
+
text-transform: uppercase;
|
|
347
|
+
}
|
|
348
|
+
|
|
349
|
+
.service-table a {
|
|
350
|
+
font-weight: 500;
|
|
351
|
+
color: #ffc627;
|
|
352
|
+
text-decoration: none;
|
|
353
|
+
}
|
|
354
|
+
|
|
355
|
+
.service-table a:hover {
|
|
356
|
+
text-decoration: underline;
|
|
357
|
+
}
|
|
358
|
+
|
|
359
|
+
/* Default row hover with gold glow */
|
|
360
|
+
.service-table tr:hover {
|
|
361
|
+
box-shadow: 0 0 10px 2px rgba(255, 198, 39, 0.25);
|
|
362
|
+
background-color: #222;
|
|
363
|
+
transition:
|
|
364
|
+
background-color 0.3s ease,
|
|
365
|
+
box-shadow 0.3s ease;
|
|
366
|
+
}
|
|
367
|
+
|
|
368
|
+
/* Selected (active) row — gold border, no glow unless hovered */
|
|
369
|
+
.service-table tr.selected {
|
|
370
|
+
background-color: #222;
|
|
371
|
+
transition:
|
|
372
|
+
background-color 0.3s ease,
|
|
373
|
+
border-left-color 0.3s ease;
|
|
374
|
+
border-left: 4px solid #ffc627;
|
|
375
|
+
}
|
|
376
|
+
|
|
377
|
+
/* Add subtle glow when hovering over the active row */
|
|
378
|
+
.service-table tr.selected:hover {
|
|
379
|
+
box-shadow: 0 0 12px 3px rgba(255, 198, 39, 0.35);
|
|
380
|
+
background-color: #252525;
|
|
381
|
+
}
|
|
382
|
+
|
|
383
|
+
@media (max-width: 768px) {
|
|
384
|
+
.service-table {
|
|
385
|
+
font-size: 0.9rem;
|
|
386
|
+
}
|
|
387
|
+
.service-table th,
|
|
388
|
+
.service-table td {
|
|
389
|
+
padding: 0.5rem;
|
|
390
|
+
}
|
|
391
|
+
}
|
|
392
|
+
|
|
319
393
|
/* ==========================================================================
|
|
320
394
|
Custom CSS
|
|
321
395
|
========================================================================== */
|
|
@@ -621,3 +695,17 @@ footer .container {
|
|
|
621
695
|
margin-left: 3px;
|
|
622
696
|
vertical-align: text-bottom;
|
|
623
697
|
}
|
|
698
|
+
|
|
699
|
+
#toc ul {
|
|
700
|
+
list-style-type: disc;
|
|
701
|
+
padding-left: 1.5rem;
|
|
702
|
+
}
|
|
703
|
+
|
|
704
|
+
#toc a {
|
|
705
|
+
color: var(--color-primary, #ffc627);
|
|
706
|
+
text-decoration: none;
|
|
707
|
+
}
|
|
708
|
+
|
|
709
|
+
#toc a:hover {
|
|
710
|
+
text-decoration: underline;
|
|
711
|
+
}
|