@networkpro/web 1.22.2 → 1.23.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.
Files changed (43) hide show
  1. package/.node-version +1 -1
  2. package/.nvmrc +1 -1
  3. package/CHANGELOG.md +54 -1
  4. package/LICENSE.md +1 -1
  5. package/README.md +5 -5
  6. package/budget.json +1 -1
  7. package/package.json +7 -6
  8. package/src/app.html +4 -4
  9. package/src/lib/README.md +12 -9
  10. package/src/lib/components/Badges.svelte +2 -2
  11. package/src/lib/components/LegalNav.svelte +1 -1
  12. package/src/lib/components/MetaTags.svelte +42 -16
  13. package/src/lib/components/layout/Footer.svelte +7 -7
  14. package/src/lib/components/layout/HeaderDefault.svelte +1 -1
  15. package/src/lib/components/layout/HeaderHome.svelte +1 -1
  16. package/src/lib/index.js +2 -2
  17. package/src/lib/meta.js +24 -24
  18. package/src/lib/pages/AboutContent.svelte +9 -9
  19. package/src/lib/pages/HomeContent.svelte +1 -1
  20. package/src/lib/pages/LicenseContent.svelte +6 -7
  21. package/src/lib/pages/ServicesContent.svelte +1 -2
  22. package/src/lib/pages/TermsUseContent.svelte +1 -1
  23. package/src/lib/types/README.md +2 -2
  24. package/src/routes/+layout.js +2 -3
  25. package/src/routes/+layout.svelte +11 -3
  26. package/src/routes/+page.svelte +7 -26
  27. package/src/routes/about/+page.svelte +10 -21
  28. package/src/routes/{license → foss}/+page.server.js +2 -2
  29. package/src/routes/{foss-spotlight → foss}/+page.svelte +11 -22
  30. package/src/routes/{foss-spotlight → legal}/+page.server.js +2 -2
  31. package/src/routes/{license → legal}/+page.svelte +11 -22
  32. package/src/routes/pgp/+page.svelte +10 -21
  33. package/src/routes/privacy/+page.svelte +10 -21
  34. package/src/routes/privacy-dashboard/+page.svelte +10 -27
  35. package/src/routes/services/+page.svelte +3 -16
  36. package/src/routes/terms-conditions/+page.svelte +10 -21
  37. package/src/routes/terms-of-use/+page.svelte +10 -21
  38. package/static/sitemap.xml +13 -13
  39. package/tests/e2e/mobile.spec.js +36 -17
  40. package/tests/e2e/shared/helpers.js +39 -1
  41. package/tests/meta/meta.test.js +1 -1
  42. package/tests/unit/server/meta.test.js +1 -1
  43. package/vercel.json +8 -8
@@ -43,8 +43,8 @@ TypeScript build requirement.
43
43
  Copyright © 2025
44
44
  **[Network Pro Strategies](https://netwk.pro) (Network Pro™)**
45
45
 
46
- Network Pro™, the shield logo, and the "Locking Down Networks...™" slogan are [trademarks](https://netwk.pro/license#trademark) of Network Pro Strategies.
46
+ Network Pro™, the shield logo, and the "Locking Down Networks...™" slogan are [trademarks](https://netwk.pro/legal#trademark) of Network Pro Strategies.
47
47
 
48
- Licensed under **[CC BY 4.0](https://netwk.pro/license#cc-by)** and the **[GNU GPL](https://netwk.pro/license#gnu-gpl)**, as published by the [Free Software Foundation](https://www.fsf.org), either version 3 of the License, or (at your option) any later version.
48
+ Licensed under **[CC BY 4.0](https://netwk.pro/legal#cc-by)** and the **[GNU GPL](https://netwk.pro/legal#gnu-gpl)**, as published by the [Free Software Foundation](https://www.fsf.org), either version 3 of the License, or (at your option) any later version.
49
49
 
50
50
  </span>
@@ -19,9 +19,8 @@ import { meta as routeMeta } from '$lib/meta.js'; // Import meta from $lib/meta.
19
19
  * Actual meta content is provided per-route via +page.server.js.
20
20
  */
21
21
  const fallbackMeta = {
22
- title: 'Security, Networking, Privacy — Network Pro™',
23
- description:
24
- 'Locking Down Networks, Unlocking Confidence™ | Security, Networking, Privacy — Network Pro Strategies',
22
+ title: 'Security, Networking, Privacy',
23
+ description: 'Locking Down Networks, Unlocking Confidence™',
25
24
  };
26
25
 
27
26
  export const prerender = 'auto';
@@ -8,11 +8,14 @@ This file is part of Network Pro.
8
8
 
9
9
  <script>
10
10
  export let data;
11
-
12
11
  import { onMount } from 'svelte';
13
12
  import { initAnalytics } from '$lib/utils/initAnalytics';
14
13
  import { showReminder } from '$lib/stores/posthog';
15
- import { ContainerSection, PWAInstallButton } from '$lib/components';
14
+ import {
15
+ ContainerSection,
16
+ MetaTags,
17
+ PWAInstallButton,
18
+ } from '$lib/components';
16
19
  import { Footer, HeaderDefault, HeaderHome } from '$lib/components/layout';
17
20
  import { appleTouchIcon, faviconSvg, logoPng, logoWbp } from '$lib';
18
21
 
@@ -34,6 +37,12 @@ This file is part of Network Pro.
34
37
  'Locking Down Networks, Unlocking Confidence™ | Security, Networking, Privacy — Network Pro Strategies';
35
38
  </script>
36
39
 
40
+ <!-- Injects proper <title> and <meta> tags -->
41
+ <MetaTags
42
+ title={metaTitle}
43
+ description={metaDescription}
44
+ pathname={data.pathname} />
45
+
37
46
  <svelte:head>
38
47
  <!-- Dynamic preloads only, meta moved to $lib/components/MetaTags.svelte -->
39
48
  <link rel="preload" href={logoWbp} as="image" type="image/webp" />
@@ -45,7 +54,6 @@ This file is part of Network Pro.
45
54
  <link rel="apple-touch-icon" href={appleTouchIcon} />
46
55
 
47
56
  <!-- Static moved to app.html 2025-05-21 -->
48
- <meta name="theme-color" content="#ffc627" />
49
57
  </svelte:head>
50
58
 
51
59
  <!-- BEGIN HEADER -->
@@ -13,29 +13,10 @@ This file is part of Network Pro.
13
13
  LegalNav,
14
14
  Logo,
15
15
  SocialMedia,
16
- MetaTags,
17
16
  } from '$lib/components';
18
17
  import { HomeContent } from '$lib/pages';
19
-
20
- /**
21
- * @type {string}
22
- * Style class for the horizontal rule element.
23
- */
24
- const hrStyle = 'hr-styled';
25
-
26
- /**
27
- * @type {string}
28
- * Style class for the div element.
29
- */
30
- const spaceStyle = 'spacer';
31
-
32
- export let data;
33
18
  </script>
34
19
 
35
- <MetaTags title={data.meta.title} description={data.meta.description} />
36
-
37
- <link rel="canonical" href="https://netwk.pro" />
38
-
39
20
  <section id="home-page" data-testid="home-page">
40
21
  <FullWidthSection>
41
22
  <!-- BEGIN TITLE -->
@@ -44,11 +25,11 @@ This file is part of Network Pro.
44
25
  </section>
45
26
  <!-- END TITLE -->
46
27
 
47
- <div class={spaceStyle}></div>
28
+ <div class="spacer"></div>
48
29
 
49
- <hr class={hrStyle} />
30
+ <hr class="hr-styled" />
50
31
 
51
- <div class={spaceStyle}></div>
32
+ <div class="spacer"></div>
52
33
 
53
34
  <!-- BEGIN MAIN CONTENT -->
54
35
  <section id="main-content">
@@ -56,7 +37,7 @@ This file is part of Network Pro.
56
37
  </section>
57
38
  <!-- END MAIN CONTENT -->
58
39
 
59
- <div class={spaceStyle}></div>
40
+ <div class="spacer"></div>
60
41
 
61
42
  <!-- BEGIN SOCIAL MEDIA -->
62
43
  <section id="social-media">
@@ -64,9 +45,9 @@ This file is part of Network Pro.
64
45
  </section>
65
46
  <!-- END SOCIAL MEDIA -->
66
47
 
67
- <hr class={hrStyle} />
48
+ <hr class="hr-styled" />
68
49
 
69
- <div class={spaceStyle}></div>
50
+ <div class="spacer"></div>
70
51
 
71
52
  <!-- BEGIN LEGAL -->
72
53
  <section id="legal-nav">
@@ -74,7 +55,7 @@ This file is part of Network Pro.
74
55
  </section>
75
56
  <!-- END LEGAL -->
76
57
 
77
- <div class={spaceStyle}></div>
58
+ <div class="spacer"></div>
78
59
 
79
60
  <!-- BEGIN BADGES -->
80
61
  <section id="badges">
@@ -7,26 +7,15 @@ This file is part of Network Pro.
7
7
  ========================================================================== -->
8
8
 
9
9
  <script>
10
- import AboutContent from '$lib/pages/AboutContent.svelte';
11
- import Badges from '$lib/components/Badges.svelte';
12
- import FullWidthSection from '$lib/components/FullWidthSection.svelte';
13
- import LegalNav from '$lib/components/LegalNav.svelte';
14
- import SocialMedia from '$lib/components/SocialMedia.svelte';
15
- import MetaTags from '$lib/components/MetaTags.svelte';
16
-
17
- /**
18
- * @type {string}
19
- * Style class for the div element.
20
- */
21
- const spaceStyle = 'spacer';
22
-
23
- export let data;
10
+ import {
11
+ Badges,
12
+ FullWidthSection,
13
+ LegalNav,
14
+ SocialMedia,
15
+ } from '$lib/components';
16
+ import { AboutContent } from '$lib/pages';
24
17
  </script>
25
18
 
26
- <MetaTags title={data.meta.title} description={data.meta.description} />
27
-
28
- <link rel="canonical" href="https://netwk.pro/about" />
29
-
30
19
  <section id="about">
31
20
  <FullWidthSection>
32
21
  <!-- BEGIN MAIN CONTENT -->
@@ -35,7 +24,7 @@ This file is part of Network Pro.
35
24
  </section>
36
25
  <!-- END MAIN CONTENT -->
37
26
 
38
- <div class={spaceStyle}></div>
27
+ <div class="spacer"></div>
39
28
 
40
29
  <!-- SOCIAL MEDIA -->
41
30
  <section id="social-media">
@@ -44,14 +33,14 @@ This file is part of Network Pro.
44
33
 
45
34
  <hr />
46
35
 
47
- <div class={spaceStyle}></div>
36
+ <div class="spacer"></div>
48
37
 
49
38
  <!-- LEGAL NAVIGATION -->
50
39
  <section id="legal-nav">
51
40
  <LegalNav />
52
41
  </section>
53
42
 
54
- <div class={spaceStyle}></div>
43
+ <div class="spacer"></div>
55
44
 
56
45
  <!-- BADGES -->
57
46
  <section id="badges">
@@ -1,5 +1,5 @@
1
1
  /* ==========================================================================
2
- src/routes/license/+page.server.js
2
+ src/routes/foss/+page.server.js
3
3
 
4
4
  Copyright © 2025 Network Pro Strategies (Network Pro™)
5
5
  SPDX-License-Identifier: CC-BY-4.0 OR GPL-3.0-or-later
@@ -13,6 +13,6 @@ export const prerender = false;
13
13
  /** @type {import('./$types').PageServerLoad} */
14
14
  export function load() {
15
15
  return {
16
- meta: meta['/license'] || defaultMeta,
16
+ meta: meta['/foss'] || defaultMeta,
17
17
  };
18
18
  }
@@ -1,5 +1,5 @@
1
1
  <!-- ==========================================================================
2
- src/lib/pages/FossSpotlightContent.svelte
2
+ src/routes/foss/+page.svelte
3
3
 
4
4
  Copyright © 2025 Network Pro Strategies (Network Pro™)
5
5
  SPDX-License-Identifier: CC-BY-4.0 OR GPL-3.0-or-later
@@ -7,26 +7,15 @@ This file is part of Network Pro.
7
7
  ========================================================================== -->
8
8
 
9
9
  <script>
10
- import Badges from '$lib/components/Badges.svelte';
11
- import FullWidthSection from '$lib/components/FullWidthSection.svelte';
12
- import FossContent from '$lib/pages/FossContent.svelte';
13
- import LegalNav from '$lib/components/LegalNav.svelte';
14
- import SocialMedia from '$lib/components/SocialMedia.svelte';
15
- import MetaTags from '$lib/components/MetaTags.svelte';
16
-
17
- /**
18
- * @type {string}
19
- * Style class for the div element.
20
- */
21
- const spaceStyle = 'spacer';
22
-
23
- export let data;
10
+ import {
11
+ Badges,
12
+ FullWidthSection,
13
+ LegalNav,
14
+ SocialMedia,
15
+ } from '$lib/components';
16
+ import { FossContent } from '$lib/pages';
24
17
  </script>
25
18
 
26
- <MetaTags title={data.meta.title} description={data.meta.description} />
27
-
28
- <link rel="canonical" href="https://netwk.pro/foss-spotlight" />
29
-
30
19
  <section id="license">
31
20
  <FullWidthSection>
32
21
  <!-- BEGIN FOSS SPOTLIGHT -->
@@ -35,7 +24,7 @@ This file is part of Network Pro.
35
24
  </section>
36
25
  <!-- END FOSS SPOTLIGHT -->
37
26
 
38
- <div class={spaceStyle}></div>
27
+ <div class="spacer"></div>
39
28
 
40
29
  <!-- BEGIN SOCIAL MEDIA -->
41
30
  <section id="social-media">
@@ -45,7 +34,7 @@ This file is part of Network Pro.
45
34
 
46
35
  <hr />
47
36
 
48
- <div class={spaceStyle}></div>
37
+ <div class="spacer"></div>
49
38
 
50
39
  <!-- BEGIN LEGAL -->
51
40
  <section id="legal-nav">
@@ -53,7 +42,7 @@ This file is part of Network Pro.
53
42
  </section>
54
43
  <!-- END LEGAL -->
55
44
 
56
- <div class={spaceStyle}></div>
45
+ <div class="spacer"></div>
57
46
 
58
47
  <!-- BEGIN BADGES -->
59
48
  <section id="badges">
@@ -1,5 +1,5 @@
1
1
  /* ==========================================================================
2
- src/routes/foss-spotlight/+page.server.js
2
+ src/routes/legal/+page.server.js
3
3
 
4
4
  Copyright © 2025 Network Pro Strategies (Network Pro™)
5
5
  SPDX-License-Identifier: CC-BY-4.0 OR GPL-3.0-or-later
@@ -13,6 +13,6 @@ export const prerender = false;
13
13
  /** @type {import('./$types').PageServerLoad} */
14
14
  export function load() {
15
15
  return {
16
- meta: meta['/foss-spotlight'] || defaultMeta,
16
+ meta: meta['/legal'] || defaultMeta,
17
17
  };
18
18
  }
@@ -1,5 +1,5 @@
1
1
  <!-- ==========================================================================
2
- src/routes/license/+page.svelte
2
+ src/routes/legal/+page.svelte
3
3
 
4
4
  Copyright © 2025 Network Pro Strategies (Network Pro™)
5
5
  SPDX-License-Identifier: CC-BY-4.0 OR GPL-3.0-or-later
@@ -7,26 +7,15 @@ This file is part of Network Pro.
7
7
  ========================================================================== -->
8
8
 
9
9
  <script>
10
- import Badges from '$lib/components/Badges.svelte';
11
- import FullWidthSection from '$lib/components/FullWidthSection.svelte';
12
- import LicenseContent from '$lib/pages/LicenseContent.svelte';
13
- import LegalNav from '$lib/components/LegalNav.svelte';
14
- import SocialMedia from '$lib/components/SocialMedia.svelte';
15
- import MetaTags from '$lib/components/MetaTags.svelte';
16
-
17
- /**
18
- * @type {string}
19
- * Style class for the div element.
20
- */
21
- const spaceStyle = 'spacer';
22
-
23
- export let data;
10
+ import {
11
+ Badges,
12
+ FullWidthSection,
13
+ LegalNav,
14
+ SocialMedia,
15
+ } from '$lib/components';
16
+ import { LicenseContent } from '$lib/pages';
24
17
  </script>
25
18
 
26
- <MetaTags title={data.meta.title} description={data.meta.description} />
27
-
28
- <link rel="canonical" href="https://netwk.pro/license" />
29
-
30
19
  <section id="license">
31
20
  <FullWidthSection containerClass="readable">
32
21
  <!-- BEGIN LEGAL, COPYRIGHT, AND LICENSING -->
@@ -35,7 +24,7 @@ This file is part of Network Pro.
35
24
  </section>
36
25
  <!-- END LEGAL, COPYRIGHT, AND LICENSING -->
37
26
 
38
- <div class={spaceStyle}></div>
27
+ <div class="spacer"></div>
39
28
 
40
29
  <!-- BEGIN SOCIAL MEDIA -->
41
30
  <section id="social-media">
@@ -45,7 +34,7 @@ This file is part of Network Pro.
45
34
 
46
35
  <hr />
47
36
 
48
- <div class={spaceStyle}></div>
37
+ <div class="spacer"></div>
49
38
 
50
39
  <!-- BEGIN LEGAL -->
51
40
  <section id="legal-nav">
@@ -53,7 +42,7 @@ This file is part of Network Pro.
53
42
  </section>
54
43
  <!-- END LEGAL -->
55
44
 
56
- <div class={spaceStyle}></div>
45
+ <div class="spacer"></div>
57
46
 
58
47
  <!-- BEGIN BADGES -->
59
48
  <section id="badges">
@@ -7,26 +7,15 @@ This file is part of Network Pro.
7
7
  ========================================================================== -->
8
8
 
9
9
  <script>
10
- import PGPContent from '$lib/pages/PGPContent.svelte';
11
- import Badges from '$lib/components/Badges.svelte';
12
- import FullWidthSection from '$lib/components/FullWidthSection.svelte';
13
- import LegalNav from '$lib/components/LegalNav.svelte';
14
- import SocialMedia from '$lib/components/SocialMedia.svelte';
15
- import MetaTags from '$lib/components/MetaTags.svelte';
16
-
17
- /**
18
- * @type {string}
19
- * Style class for the div element.
20
- */
21
- const spaceStyle = 'spacer';
22
-
23
- export let data;
10
+ import {
11
+ Badges,
12
+ FullWidthSection,
13
+ LegalNav,
14
+ SocialMedia,
15
+ } from '$lib/components';
16
+ import { PGPContent } from '$lib/pages';
24
17
  </script>
25
18
 
26
- <MetaTags title={data.meta.title} description={data.meta.description} />
27
-
28
- <link rel="canonical" href="https://netwk.pro/pgp" />
29
-
30
19
  <section id="about">
31
20
  <FullWidthSection containerClass="readable">
32
21
  <!-- BEGIN MAIN CONTENT -->
@@ -35,7 +24,7 @@ This file is part of Network Pro.
35
24
  </section>
36
25
  <!-- END MAIN CONTENT -->
37
26
 
38
- <div class={spaceStyle}></div>
27
+ <div class="spacer"></div>
39
28
 
40
29
  <!-- SOCIAL MEDIA -->
41
30
  <section id="social-media">
@@ -44,14 +33,14 @@ This file is part of Network Pro.
44
33
 
45
34
  <hr />
46
35
 
47
- <div class={spaceStyle}></div>
36
+ <div class="spacer"></div>
48
37
 
49
38
  <!-- LEGAL NAVIGATION -->
50
39
  <section id="legal-nav">
51
40
  <LegalNav />
52
41
  </section>
53
42
 
54
- <div class={spaceStyle}></div>
43
+ <div class="spacer"></div>
55
44
 
56
45
  <!-- BADGES -->
57
46
  <section id="badges">
@@ -7,26 +7,15 @@ This file is part of Network Pro.
7
7
  ========================================================================== -->
8
8
 
9
9
  <script>
10
- import Badges from '$lib/components/Badges.svelte';
11
- import FullWidthSection from '$lib/components/FullWidthSection.svelte';
12
- import PrivacyContent from '$lib/pages/PrivacyContent.svelte';
13
- import LegalNav from '$lib/components/LegalNav.svelte';
14
- import SocialMedia from '$lib/components/SocialMedia.svelte';
15
- import MetaTags from '$lib/components/MetaTags.svelte';
16
-
17
- /**
18
- * @type {string}
19
- * Style class for the div element.
20
- */
21
- const spaceStyle = 'spacer';
22
-
23
- export let data;
10
+ import {
11
+ Badges,
12
+ FullWidthSection,
13
+ LegalNav,
14
+ SocialMedia,
15
+ } from '$lib/components';
16
+ import { PrivacyContent } from '$lib/pages';
24
17
  </script>
25
18
 
26
- <MetaTags title={data.meta.title} description={data.meta.description} />
27
-
28
- <link rel="canonical" href="https://netwk.pro/privacy" />
29
-
30
19
  <section id="privacy">
31
20
  <FullWidthSection containerClass="readable">
32
21
  <!-- BEGIN PRIVACY POLICY -->
@@ -35,7 +24,7 @@ This file is part of Network Pro.
35
24
  </section>
36
25
  <!-- END PRIVACY POLICY -->
37
26
 
38
- <div class={spaceStyle}></div>
27
+ <div class="spacer"></div>
39
28
 
40
29
  <!-- BEGIN SOCIAL MEDIA -->
41
30
  <section id="social-media">
@@ -45,7 +34,7 @@ This file is part of Network Pro.
45
34
 
46
35
  <hr />
47
36
 
48
- <div class={spaceStyle}></div>
37
+ <div class="spacer"></div>
49
38
 
50
39
  <!-- BEGIN LEGAL -->
51
40
  <section id="legal-nav">
@@ -53,7 +42,7 @@ This file is part of Network Pro.
53
42
  </section>
54
43
  <!-- END LEGAL -->
55
44
 
56
- <div class={spaceStyle}></div>
45
+ <div class="spacer"></div>
57
46
 
58
47
  <!-- BEGIN BADGES -->
59
48
  <section id="badges">
@@ -7,32 +7,15 @@ This file is part of Network Pro.
7
7
  ========================================================================== -->
8
8
 
9
9
  <script>
10
- import Badges from '$lib/components/Badges.svelte';
11
- import FullWidthSection from '$lib/components/FullWidthSection.svelte';
12
- import PrivacyDashboard from '$lib/pages/PrivacyDashboard.svelte';
13
- import LegalNav from '$lib/components/LegalNav.svelte';
14
- import SocialMedia from '$lib/components/SocialMedia.svelte';
15
- import MetaTags from '$lib/components/MetaTags.svelte';
16
-
17
- /**
18
- * @type {string}
19
- * Style class for the horizontal rule element.
20
- */
21
- const hrStyle = 'hr-styled';
22
-
23
- /**
24
- * @type {string}
25
- * Style class for the div element.
26
- */
27
- const spaceStyle = 'spacer';
28
-
29
- export let data;
10
+ import {
11
+ Badges,
12
+ FullWidthSection,
13
+ LegalNav,
14
+ SocialMedia,
15
+ } from '$lib/components';
16
+ import { PrivacyDashboard } from '$lib/pages';
30
17
  </script>
31
18
 
32
- <MetaTags title={data.meta.title} description={data.meta.description} />
33
-
34
- <link rel="canonical" href="https://netwk.pro/privacy-dashboard" />
35
-
36
19
  <section id="privacy">
37
20
  <FullWidthSection containerClass="readable">
38
21
  <!-- BEGIN PRIVACY DASHBOARD -->
@@ -41,7 +24,7 @@ This file is part of Network Pro.
41
24
  </section>
42
25
  <!-- END PRIVACY DASHBOARD -->
43
26
 
44
- <div class={spaceStyle}></div>
27
+ <div class="spacer"></div>
45
28
 
46
29
  <!-- BEGIN SOCIAL MEDIA -->
47
30
  <section id="social-media">
@@ -51,7 +34,7 @@ This file is part of Network Pro.
51
34
 
52
35
  <hr />
53
36
 
54
- <div class={spaceStyle}></div>
37
+ <div class="spacer"></div>
55
38
 
56
39
  <!-- BEGIN LEGAL -->
57
40
  <section id="legal-nav">
@@ -59,7 +42,7 @@ This file is part of Network Pro.
59
42
  </section>
60
43
  <!-- END LEGAL -->
61
44
 
62
- <div class={spaceStyle}></div>
45
+ <div class="spacer"></div>
63
46
 
64
47
  <!-- BEGIN BADGES -->
65
48
  <section id="badges">
@@ -12,23 +12,10 @@ This file is part of Network Pro.
12
12
  FullWidthSection,
13
13
  LegalNav,
14
14
  SocialMedia,
15
- MetaTags,
16
15
  } from '$lib/components';
17
16
  import { ServicesContent } from '$lib/pages';
18
-
19
- /**
20
- * @type {string}
21
- * Style class for the div element.
22
- */
23
- const spaceStyle = 'spacer';
24
-
25
- export let data;
26
17
  </script>
27
18
 
28
- <MetaTags title={data.meta.title} description={data.meta.description} />
29
-
30
- <link rel="canonical" href="https://netwk.pro/services" />
31
-
32
19
  <section id="services">
33
20
  <FullWidthSection>
34
21
  <!-- BEGIN PRIVACY POLICY -->
@@ -37,7 +24,7 @@ This file is part of Network Pro.
37
24
  </section>
38
25
  <!-- END PRIVACY POLICY -->
39
26
 
40
- <div class={spaceStyle}></div>
27
+ <div class="spacer"></div>
41
28
 
42
29
  <!-- BEGIN SOCIAL MEDIA -->
43
30
  <section id="social-media">
@@ -47,7 +34,7 @@ This file is part of Network Pro.
47
34
 
48
35
  <hr />
49
36
 
50
- <div class={spaceStyle}></div>
37
+ <div class="spacer"></div>
51
38
 
52
39
  <!-- BEGIN LEGAL -->
53
40
  <section id="legal-nav">
@@ -55,7 +42,7 @@ This file is part of Network Pro.
55
42
  </section>
56
43
  <!-- END LEGAL -->
57
44
 
58
- <div class={spaceStyle}></div>
45
+ <div class="spacer"></div>
59
46
 
60
47
  <!-- BEGIN BADGES -->
61
48
  <section id="badges">
@@ -7,26 +7,15 @@ This file is part of Network Pro.
7
7
  ========================================================================== -->
8
8
 
9
9
  <script>
10
- import Badges from '$lib/components/Badges.svelte';
11
- import FullWidthSection from '$lib/components/FullWidthSection.svelte';
12
- import TermsConditionsContent from '$lib/pages/TermsConditionsContent.svelte';
13
- import LegalNav from '$lib/components/LegalNav.svelte';
14
- import SocialMedia from '$lib/components/SocialMedia.svelte';
15
- import MetaTags from '$lib/components/MetaTags.svelte';
16
-
17
- /**
18
- * @type {string}
19
- * Style class for the div element.
20
- */
21
- const spaceStyle = 'spacer';
22
-
23
- export let data;
10
+ import {
11
+ Badges,
12
+ FullWidthSection,
13
+ LegalNav,
14
+ SocialMedia,
15
+ } from '$lib/components';
16
+ import { TermsConditionsContent } from '$lib/pages';
24
17
  </script>
25
18
 
26
- <MetaTags title={data.meta.title} description={data.meta.description} />
27
-
28
- <link rel="canonical" href="https://netwk.pro/terms-conditions" />
29
-
30
19
  <section id="terms-conditions">
31
20
  <FullWidthSection containerClass="readable">
32
21
  <!-- BEGIN TERMS AND CONDITIONS -->
@@ -35,7 +24,7 @@ This file is part of Network Pro.
35
24
  </section>
36
25
  <!-- END TERMS AND CONDITIONS -->
37
26
 
38
- <div class={spaceStyle}></div>
27
+ <div class="spacer"></div>
39
28
 
40
29
  <!-- BEGIN SOCIAL MEDIA -->
41
30
  <section id="social-media">
@@ -45,7 +34,7 @@ This file is part of Network Pro.
45
34
 
46
35
  <hr />
47
36
 
48
- <div class={spaceStyle}></div>
37
+ <div class="spacer"></div>
49
38
 
50
39
  <!-- BEGIN LEGAL -->
51
40
  <section id="legal-nav">
@@ -53,7 +42,7 @@ This file is part of Network Pro.
53
42
  </section>
54
43
  <!-- END LEGAL -->
55
44
 
56
- <div class={spaceStyle}></div>
45
+ <div class="spacer"></div>
57
46
 
58
47
  <!-- BEGIN BADGES -->
59
48
  <section id="badges">