@networkpro/web 1.9.1 → 1.10.1

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.
@@ -6,8 +6,6 @@ SPDX-License-Identifier: CC-BY-4.0 OR GPL-3.0-or-later
6
6
  This file is part of Network Pro.
7
7
  ========================================================================== -->
8
8
 
9
- <!-- cspell:ignore prights prefs pdash -->
10
-
11
9
  <script>
12
10
  import { base } from "$app/paths";
13
11
  import { onMount } from "svelte";
@@ -17,10 +15,15 @@ This file is part of Network Pro.
17
15
  setTrackingPreference,
18
16
  clearTrackingPreferences,
19
17
  } from "$lib/utils/trackingCookies.js";
18
+ import { CONSTANTS } from "$lib";
20
19
 
21
20
  // Log the base path to verify its value
22
21
  //console.log("Base path:", base);
23
22
 
23
+ console.log(CONSTANTS.COMPANY_INFO.APP_NAME);
24
+
25
+ const { COMPANY_INFO, CONTACT, PAGE, NAV } = CONSTANTS;
26
+
24
27
  /**
25
28
  * URL to the Privacy Rights Request Form redirect route, using the base path
26
29
  * URL to the Contact Form redirect route, using the base path
@@ -58,37 +61,11 @@ This file is part of Network Pro.
58
61
  { id: "contact", text: "Contact" },
59
62
  ];
60
63
 
61
- /**
62
- * Contact Information
63
- * @type {{ company: string, email: string, secure: string, phone: string, effectiveDate: string }}
64
- */
65
- const contactInfo = {
66
- company: "Network Pro Strategies",
67
- email: "support (at) neteng.pro",
68
- secure: "contact (at) s.neteng.pro",
69
- phone: "(623) 252-4350",
70
- effectiveDate: "May 28, 2025",
71
- };
64
+ /** @type {string} */
65
+ const effectiveDate = "June 2, 2025";
72
66
 
73
- /**
74
- * Constants used throughout the component for consistent styling and behavior
75
- * @type {{
76
- * classSmall: string,
77
- * rel: string,
78
- * backTop: string,
79
- * hrefTop: string,
80
- * targetSelf: string,
81
- * targetBlank: string
82
- * }}
83
- */
84
- const constants = {
85
- classSmall: "small-text",
86
- rel: "noopener noreferrer",
87
- backTop: "Back to top",
88
- hrefTop: "#top",
89
- targetSelf: "_self",
90
- targetBlank: "_blank",
91
- };
67
+ /** @type {string} */
68
+ const classSmall = "small-text";
92
69
 
93
70
  let optedOut = false;
94
71
  let optedIn = false;
@@ -135,11 +112,11 @@ This file is part of Network Pro.
135
112
 
136
113
  <!-- BEGIN TITLE -->
137
114
  <section id="top">
138
- <span class={constants.classSmall}>
115
+ <span class={classSmall}>
139
116
  <a
140
- rel={constants.rel}
117
+ rel={PAGE.REL}
141
118
  href="https://spdx.dev/learn/handling-license-info"
142
- target={constants.targetBlank}>
119
+ target={PAGE.BLANK}>
143
120
  SPDX License Identifier
144
121
  </a>: &nbsp;<code>CC-BY-4.0 OR GPL-3.0-or-later</code>
145
122
  </span>
@@ -148,9 +125,9 @@ This file is part of Network Pro.
148
125
  <section id="page-title">
149
126
  <h1>Privacy Policy</h1>
150
127
  <p>
151
- <strong>{contactInfo.company}</strong><br />
128
+ <strong>{COMPANY_INFO.NAME}</strong><br />
152
129
  <strong>Effective Date:</strong>
153
- {contactInfo.effectiveDate}
130
+ {effectiveDate}
154
131
  </p>
155
132
  </section>
156
133
  <!-- END TITLE -->
@@ -175,7 +152,7 @@ This file is part of Network Pro.
175
152
  <strong>Formats Available:</strong> &nbsp;<span class="visited"
176
153
  >HTML</span>
177
154
  |
178
- <a href={privacyLink} target={constants.targetSelf}>Docs</a>
155
+ <a href={privacyLink} target={PAGE.SELF}>Docs</a>
179
156
  </sup>
180
157
  </p>
181
158
  </section>
@@ -196,23 +173,28 @@ This file is part of Network Pro.
196
173
  4 of the
197
174
  <strong>
198
175
  <a
199
- rel={constants.rel}
176
+ rel={PAGE.REL}
200
177
  href="https://www.azleg.gov/arstitle"
201
- target={constants.targetBlank}>
178
+ target={PAGE.BLANK}>
202
179
  Arizona Revised Statutes
203
180
  </a>
204
181
  </strong> (A.R.S. §§ 18-551, 18-552).
205
182
  </p>
206
183
  {:else if link.id === "collect"}
207
184
  <ul>
208
- <li
209
- ><strong>Personal Identifiers</strong> (e.g., name, email, phone number)</li>
210
- <li><strong>Business and Professional Information</strong></li>
211
- <li
212
- ><strong>Device/Technical Information</strong> (e.g., IP address, browser
213
- type, access logs)</li>
214
- <li
215
- ><strong>Client-Submitted Content</strong> related to our services</li>
185
+ <li>
186
+ <strong>Personal Identifiers</strong> (e.g., name, email, phone number)
187
+ </li>
188
+ <li>
189
+ <strong>Business and Professional Information</strong>
190
+ </li>
191
+ <li>
192
+ <strong>Device/Technical Information</strong> (e.g., IP address, browser
193
+ type, access logs)
194
+ </li>
195
+ <li>
196
+ <strong>Client-Submitted Content</strong> related to our services
197
+ </li>
216
198
  </ul>
217
199
  {:else if link.id === "tracking"}
218
200
  <p>
@@ -226,20 +208,20 @@ This file is part of Network Pro.
226
208
  <ul>
227
209
  <li>Pages visited and navigation behavior</li>
228
210
  <li>Device type, browser version, and operating system</li>
229
- <li
230
- >Time spent on pages and interaction events (e.g., clicks, scrolls)</li>
211
+ <li>
212
+ Time spent on pages and interaction events (e.g., clicks, scrolls)
213
+ </li>
231
214
  <li>Referral URLs and outbound link activity</li>
232
215
  <li>General geolocation (approximate, based on IP address)</li>
233
216
  </ul>
234
217
  <p>
235
218
  We configure PostHog to prioritize user privacy. <strong
236
219
  >Analytics tracking is automatically disabled when a user's browser
237
- sends a Do Not Track (DNT) or <a
238
- rel={constants.rel}
220
+ sends a "Do Not Track" (DNT) or <a
221
+ rel={PAGE.REL}
239
222
  href={gpcLink}
240
- target={constants.targetBlank}
241
- >“Global Privacy Control” (GPC / Sec-GPC)</a> signal.</strong> No further
242
- action is required—your browser settings are honored by default.
223
+ target={PAGE.BLANK}>"Global Privacy Control" (GPC / Sec-GPC)</a> signal.</strong>
224
+ No further action is required—your browser settings are honored by default.
243
225
  </p>
244
226
  <p>
245
227
  You can view your current tracking status below, along with manual
@@ -252,7 +234,7 @@ This file is part of Network Pro.
252
234
  <p class="emphasis">
253
235
  For convenient access, you can manage these settings through our <a
254
236
  href={pdashLink}
255
- target={constants.targetSelf}>Privacy Dashboard</a
237
+ target={PAGE.SELF}>Privacy Dashboard</a
256
238
  >.
257
239
  </p>
258
240
 
@@ -298,9 +280,9 @@ This file is part of Network Pro.
298
280
  PostHog Cloud is a third-party service, but we deploy it in a
299
281
  privacy-conscious manner that avoids intrusive profiling and aligns with
300
282
  data protection best practices. For more information, please refer to <a
301
- rel={constants.rel}
283
+ rel={PAGE.REL}
302
284
  href="https://posthog.com/privacy"
303
- target={constants.targetBlank}>PostHog's Privacy Policy</a
285
+ target={PAGE.BLANK}>PostHog's Privacy Policy</a
304
286
  >.
305
287
  </p>
306
288
  {:else if link.id === "payment"}
@@ -308,8 +290,6 @@ This file is part of Network Pro.
308
290
  When processing payments, we may collect credit card details and billing
309
291
  contact information. All credit card data is encrypted via TLS and
310
292
  shared only with PCI-compliant processors.
311
- <strong
312
- >Data is purged within 90 days post-verification of payment.</strong>
313
293
  </p>
314
294
  {:else if link.id === "use"}
315
295
  <p>Information is used to:</p>
@@ -325,24 +305,26 @@ This file is part of Network Pro.
325
305
  business information under the following circumstances:
326
306
  </p>
327
307
  <ul>
328
- <li
329
- ><strong>With Service Providers:</strong> We may share your
330
- information with carefully selected third-party vendors under
331
- enforceable, contractual agreements. These providers support essential
332
- aspects of our operations&mdash;including, but not limited to, payment
333
- processing, data analytics, and customer support services. All such
334
- partnerships are structured to uphold our core principles of
308
+ <li>
309
+ <strong>With Service Providers:</strong> We may share your information
310
+ with carefully selected third-party vendors. These providers support
311
+ essential aspects of our operations&mdash;including, but not limited
312
+ to, payment processing, data analytics, and customer support services.
313
+ All such partnerships are structured to uphold our core principles of
335
314
  <em>transparency, self-hosting, and prioritizing user privacy</em> across
336
- all infrastructure and data flows.</li>
337
- <li
338
- ><strong>Legal Compliance:</strong> We may disclose information if required
315
+ all infrastructure and data flows.
316
+ </li>
317
+ <li>
318
+ <strong>Legal Compliance:</strong> We may disclose information if required
339
319
  to do so by applicable law, regulation, legal process, or enforceable governmental
340
- request, including subpoenas or court orders.</li>
341
- <li
342
- ><strong>Business Transfers:</strong> In connection with a merger, acquisition,
320
+ request, including subpoenas or court orders.
321
+ </li>
322
+ <li>
323
+ <strong>Business Transfers:</strong> In connection with a merger, acquisition,
343
324
  asset sale, or similar corporate transaction, we may disclose or transfer
344
325
  personal information, provided that reasonable steps are taken to ensure
345
- continued confidentiality and compliance with applicable privacy laws.</li>
326
+ continued confidentiality and compliance with applicable privacy laws.
327
+ </li>
346
328
  </ul>
347
329
  {:else if link.id === "security"}
348
330
  <p>
@@ -355,22 +337,51 @@ This file is part of Network Pro.
355
337
  </p>
356
338
  {:else if link.id === "rights"}
357
339
  <h3>Your Rights and Choices</h3>
358
- <p> Under applicable state and federal law, you may have rights to: </p>
340
+
341
+ <p
342
+ ><em
343
+ >We do not sell your personal information under any circumstances.</em
344
+ ></p>
345
+ <p>
346
+ However, under applicable state, federal, and international privacy
347
+ laws, you may have the right to:
348
+ </p>
349
+
359
350
  <ul>
360
- <li
361
- ><strong>Access, update, or delete</strong> your personal information,
362
- subject to legal and contractual limitations.</li>
363
- <li
364
- ><strong>Restrict or object to processing</strong> under certain conditions,
365
- as permitted by law.</li>
366
- <li><strong>Opt out of direct marketing</strong></li>
351
+ <li>
352
+ <strong>Access, correct, or delete</strong> your personal information,
353
+ subject to legal and contractual limitations;
354
+ </li>
355
+ <li>
356
+ <strong
357
+ >Restrict or object to the processing of your personal data</strong>
358
+ in certain circumstances, as permitted by law;
359
+ </li>
360
+ <li><strong>Opt out</strong> of direct marketing communications.</li>
367
361
  </ul>
362
+
363
+ <p>
364
+ Although these rights are specifically granted to residents of
365
+ California and the European Union under laws such as the <a
366
+ rel={PAGE.REL}
367
+ href="https://oag.ca.gov/privacy/ccpa"
368
+ target={PAGE.BLANK}>California Consumer Privacy Act (CCPA)</a
369
+ >, the California Privacy Rights Act (CPRA), and the
370
+ <a
371
+ rel={PAGE.REL}
372
+ href="https://gdpr.eu/what-is-gdpr/"
373
+ target={PAGE.BLANK}>EU General Data Protection Regulation (GDPR)</a
374
+ >, we voluntarily extend these rights to all users, regardless of
375
+ residency.
376
+ </p>
368
377
  <p>
369
- To exercise these rights, please use our <a
370
- rel={constants.rel}
378
+ To exercise any of these rights, you may submit a request through our <a
379
+ rel={PAGE.REL}
371
380
  href={prightsLink}
372
- target={constants.targetBlank}>Privacy Rights Request Form</a>
373
- or email us at <code>{contactInfo.secure}</code>.
381
+ target={PAGE.BLANK}>Privacy Rights Request Form</a
382
+ >. Alternatively, you can email us at
383
+ <strong>{CONTACT.PRIVACY}</strong>
384
+ with the subject line: "<strong>Privacy Rights Preferences</strong>".
374
385
  </p>
375
386
  {:else if link.id === "third-party"}
376
387
  <p>
@@ -390,24 +401,27 @@ This file is part of Network Pro.
390
401
  posting.
391
402
  </p>
392
403
  {:else if link.id === "contact"}
393
- <p
394
- >For questions, please utilize our <a
395
- rel={constants.rel}
404
+ <p>
405
+ For questions, please utilize our <a
406
+ rel={PAGE.REL}
396
407
  href={contactLink}
397
- target={constants.targetSelf}>Contact Form</a> or contact us directly:</p>
408
+ target={PAGE.SELF}>Contact Form</a> or contact us directly:
409
+ </p>
398
410
  <p>
399
- <strong>{contactInfo.company}</strong><br />
400
- 📧 General Inquiries: <code>{contactInfo.email}</code><br />
401
- 🔐 Secure Email: <code>{contactInfo.secure}</code><br />
402
- 📞 Phone: {contactInfo.phone}
411
+ <strong>{COMPANY_INFO.NAME}</strong><br />
412
+ 📧 General Inquiries: {CONTACT.EMAIL}<br />
413
+ 🔐 Secure Email: {CONTACT.SECURE}<br />
414
+ 📞 Phone: {CONTACT.PHONE}
403
415
  </p>
404
416
  {/if}
405
417
 
406
418
  <!-- Back to Top Link -->
407
- <span class={constants.classSmall}>
408
- <a href={constants.hrefTop}>{constants.backTop}</a>
419
+ <span class={classSmall}>
420
+ <a href={NAV.HREFTOP}>{NAV.BACKTOP}</a>
409
421
  </span>
410
422
  </section>
411
423
  {/each}
412
424
  <!-- END POLICY SECTIONS -->
413
425
  <!-- END PRIVACY POLICY -->
426
+
427
+ <!-- cspell:ignore prights prefs pdash -->
@@ -15,6 +15,14 @@ This file is part of Network Pro.
15
15
  setTrackingPreference,
16
16
  clearTrackingPreferences,
17
17
  } from "$lib/utils/trackingCookies.js";
18
+ import { CONSTANTS } from "$lib";
19
+
20
+ // Log the base path to verify its value
21
+ //console.log("Base path:", base);
22
+
23
+ console.log(CONSTANTS.COMPANY_INFO.APP_NAME);
24
+
25
+ const { CONTACT, PAGE, NAV } = CONSTANTS;
18
26
 
19
27
  /**
20
28
  * @type {string}
@@ -29,25 +37,8 @@ This file is part of Network Pro.
29
37
  const privacyPolicy = `${base}/privacy`;
30
38
  const prightsLink = `${base}/privacy-rights`;
31
39
 
32
- /**
33
- * Constants used throughout the component for consistent styling and behavior
34
- * @type {{
35
- * classSmall: string,
36
- * rel: string,
37
- * backTop: string,
38
- * hrefTop: string,
39
- * targetSelf: string,
40
- * targetBlank: string
41
- * }}
42
- */
43
- const constants = {
44
- classSmall: "small-text",
45
- rel: "noopener noreferrer",
46
- backTop: "Back to top",
47
- hrefTop: "#top",
48
- targetSelf: "_self",
49
- targetBlank: "_blank",
50
- };
40
+ /** @type {string} */
41
+ const classSmall = "small-text";
51
42
 
52
43
  let optedOut = false;
53
44
  let optedIn = false;
@@ -93,11 +84,11 @@ This file is part of Network Pro.
93
84
  </script>
94
85
 
95
86
  <section id="top">
96
- <span class={constants.classSmall}>
87
+ <span class={classSmall}>
97
88
  <a
98
- rel={constants.rel}
89
+ rel={PAGE.REL}
99
90
  href="https://spdx.dev/learn/handling-license-info"
100
- target={constants.targetBlank}>
91
+ target={PAGE.BLANK}>
101
92
  SPDX License Identifier
102
93
  </a>: &nbsp;<code>CC-BY-4.0 OR GPL-3.0-or-later</code>
103
94
  </span>
@@ -111,18 +102,13 @@ This file is part of Network Pro.
111
102
 
112
103
  <nav class="tracking-nav">
113
104
  <ul>
114
- <li
115
- ><a href="#tracking" target={constants.targetSelf}>Tracking Preferences</a
116
- ></li>
117
- <li
118
- ><a href="#rights" target={constants.targetSelf}
119
- >Your Rights and Choices</a
120
- ></li>
105
+ <li><a href="#tracking" target={PAGE.SELF}>Tracking Preferences</a></li>
106
+ <li><a href="#rights" target={PAGE.SELF}>Your Rights and Choices</a></li>
121
107
  </ul>
122
108
  </nav>
123
109
 
124
110
  <p class="bquote">
125
- For full details, please see our <a href={privacyPolicy} target="_self"
111
+ For full details, please see our <a href={privacyPolicy} target={PAGE.SELF}
126
112
  >Privacy Policy</a
127
113
  >.
128
114
  </p>
@@ -139,11 +125,10 @@ This file is part of Network Pro.
139
125
  <p>
140
126
  <strong
141
127
  >Analytics tracking is automatically disabled when a user's browser sends
142
- a Do Not Track (DNT) or <a
143
- rel={constants.rel}
128
+ a "Do Not Track" (DNT) or <a
129
+ rel={PAGE.REL}
144
130
  href="https://globalprivacycontrol.org/"
145
- target={constants.targetBlank}
146
- >“Global Privacy Control” (GPC / Sec-GPC)</a> signal.</strong>
131
+ target={PAGE.BLANK}>"Global Privacy Control" (GPC / Sec-GPC)</a> signal.</strong>
147
132
  No further action is required—your browser settings are honored by default.
148
133
  </p>
149
134
 
@@ -197,9 +182,8 @@ This file is part of Network Pro.
197
182
  </p>
198
183
  </section>
199
184
 
200
- <span class={constants.classSmall}>
201
- <a href={constants.hrefTop} target={constants.targetSelf}
202
- >{constants.backTop}</a>
185
+ <span class={classSmall}>
186
+ <a href={NAV.HREFTOP} target={PAGE.SELF}>{NAV.BACKTOP}</a>
203
187
  </span>
204
188
 
205
189
  <div class={spaceStyle}></div>
@@ -211,30 +195,51 @@ This file is part of Network Pro.
211
195
  <section id="rights">
212
196
  <h3>Your Rights and Choices</h3>
213
197
 
214
- <p> Under applicable state and federal law, you may have rights to: </p>
198
+ <p
199
+ ><em>We do not sell your personal information under any circumstances.</em
200
+ ></p>
201
+ <p>
202
+ However, under applicable state, federal, and international privacy laws,
203
+ you may have the right to:
204
+ </p>
215
205
 
216
206
  <ul>
217
- <li
218
- ><strong>Access, update, or delete</strong> your personal information, subject
219
- to legal and contractual limitations.</li>
220
- <li
221
- ><strong>Restrict or object to processing</strong> under certain conditions,
222
- as permitted by law.</li>
223
- <li><strong>Opt out of direct marketing</strong></li>
207
+ <li>
208
+ <strong>Access, correct, or delete</strong> your personal information, subject
209
+ to legal and contractual limitations;
210
+ </li>
211
+ <li>
212
+ <strong
213
+ >Restrict or object to the processing of your personal data</strong> in certain
214
+ circumstances, as permitted by law;
215
+ </li>
216
+ <li><strong>Opt out</strong> of direct marketing communications.</li>
224
217
  </ul>
225
218
 
226
219
  <p>
227
- To exercise these rights, please use our <a
228
- rel={constants.rel}
220
+ Although these rights are specifically granted to residents of California
221
+ and the European Union under laws such as the <a
222
+ rel={PAGE.REL}
223
+ href="https://oag.ca.gov/privacy/ccpa"
224
+ target={PAGE.BLANK}>California Consumer Privacy Act (CCPA)</a
225
+ >, the California Privacy Rights Act (CPRA), and the
226
+ <a rel={PAGE.REL} href="https://gdpr.eu/what-is-gdpr/" target={PAGE.BLANK}
227
+ >EU General Data Protection Regulation (GDPR)</a
228
+ >, we voluntarily extend these rights to all users, regardless of residency.
229
+ </p>
230
+ <p>
231
+ To exercise any of these rights, you may submit a request through our <a
232
+ rel={PAGE.REL}
229
233
  href={prightsLink}
230
- target={constants.targetBlank}>Privacy Rights Request Form</a>
231
- or email us at <code>contact (at) s.neteng.pro</code>.
234
+ target={PAGE.BLANK}>Privacy Rights Request Form</a
235
+ >. Alternatively, you can email us at
236
+ <strong>{CONTACT.PRIVACY}</strong>
237
+ with the subject line: "<strong>Privacy Rights Preferences</strong>".
232
238
  </p>
233
239
  </section>
234
240
 
235
- <span class={constants.classSmall}>
236
- <a href={constants.hrefTop} target={constants.targetSelf}
237
- >{constants.backTop}</a>
241
+ <span class={classSmall}>
242
+ <a href={NAV.HREFTOP} target={PAGE.SELF}>{NAV.BACKTOP}</a>
238
243
  </span>
239
244
 
240
245
  <!-- cspell:ignore prefs prights -->
@@ -10,10 +10,15 @@ This file is part of Network Pro.
10
10
 
11
11
  <script>
12
12
  import { base } from "$app/paths";
13
+ import { CONSTANTS } from "$lib";
13
14
 
14
15
  // Log the base path to verify its value
15
16
  //console.log("Base path:", base);
16
17
 
18
+ console.log(CONSTANTS.COMPANY_INFO.APP_NAME);
19
+
20
+ const { COMPANY_INFO, PAGE, NAV } = CONSTANTS;
21
+
17
22
  /**
18
23
  * URL to Terms of Use page, using the base path
19
24
  * @type {string}
@@ -29,23 +34,13 @@ This file is part of Network Pro.
29
34
  /**
30
35
  * Common constants used throughout the component
31
36
  * @type {{
32
- * company: string,
33
37
  * effectiveDate: string,
34
- * rel: string,
35
- * targetBlank: string,
36
- * targetSelf: string,
37
38
  * classSmall: string,
38
- * hrefTop: string
39
39
  * }}
40
40
  */
41
41
  const constants = {
42
- company: "Network Pro Strategies",
43
42
  effectiveDate: "May 8, 2025",
44
- rel: "noopener noreferrer",
45
- targetBlank: "_blank",
46
- targetSelf: "_self",
47
43
  classSmall: "small-text",
48
- hrefTop: "#top",
49
44
  };
50
45
 
51
46
  /**
@@ -70,7 +65,10 @@ This file is part of Network Pro.
70
65
  <!-- BEGIN TITLE -->
71
66
  <section id="top">
72
67
  <span class={constants.classSmall}>
73
- <a rel={constants.rel} href="https://spdx.dev/learn/handling-license-info">
68
+ <a
69
+ rel={PAGE.REL}
70
+ href="https://spdx.dev/learn/handling-license-info"
71
+ target={PAGE.BLANK}>
74
72
  SPDX License Identifier
75
73
  </a>: &nbsp;<code>CC-BY-4.0 OR GPL-3.0-or-later</code>
76
74
  </span>
@@ -79,7 +77,7 @@ This file is part of Network Pro.
79
77
  <section id="page-title">
80
78
  <h1>Consulting Terms and Conditions</h1>
81
79
  <p>
82
- <strong>{constants.company}<br />Effective Date:</strong>
80
+ <strong>{COMPANY_INFO.NAME}<br />Effective Date:</strong>
83
81
  {constants.effectiveDate}
84
82
  </p>
85
83
  </section>
@@ -101,7 +99,7 @@ This file is part of Network Pro.
101
99
  These Terms and Conditions apply exclusively to the provision of our
102
100
  consulting and implementation services. For all other uses of our website and
103
101
  associated platforms, please refer to the applicable
104
- <a href={termsLink} target={constants.targetSelf}> Website Terms of Use </a>.
102
+ <a href={termsLink} target={PAGE.SELF}> Website Terms of Use </a>.
105
103
  </p>
106
104
 
107
105
  <hr />
@@ -112,9 +110,9 @@ This file is part of Network Pro.
112
110
  <strong>Formats Available:</strong> &nbsp;<span class="visited"
113
111
  >HTML</span>
114
112
  |
115
- <a href={tandcLink} target={constants.targetSelf}>Docs</a>
113
+ <a href={tandcLink} target={PAGE.SELF}>Docs</a>
116
114
  |
117
- <a href="/assets/consulting-terms.pdf" target={constants.targetBlank}>
115
+ <a href="/assets/consulting-terms.pdf" target={PAGE.BLANK}>
118
116
  PDF <span class="fas fa-file-arrow-down"></span>
119
117
  </a>
120
118
  </sup>
@@ -129,7 +127,7 @@ This file is part of Network Pro.
129
127
  <p>
130
128
  By engaging with the information security, network security,
131
129
  cybersecurity, and digital privacy consulting and implementation
132
- services provided by {constants.company} ("Company," "we," "us," or "our"),
130
+ services provided by {COMPANY_INFO.NAME} ("Company," "we," "us," or "our"),
133
131
  you ("Client") agree to be bound by these Terms and Conditions ("Terms").
134
132
  <strong>
135
133
  These Terms govern all engagements except where explicitly superseded
@@ -234,7 +232,7 @@ This file is part of Network Pro.
234
232
  {/if}
235
233
 
236
234
  <span class={constants.classSmall}
237
- ><a href={constants.hrefTop}>Back to top</a></span>
235
+ ><a href={NAV.HREFTOP}>{NAV.BACKTOP}</a></span>
238
236
  </section>
239
237
  {/each}
240
238
  <!-- END TERMS AND CONDITIONS -->