@netfoundry/docusaurus-theme 0.9.0 → 0.10.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 (65) hide show
  1. package/css/layout.css +37 -0
  2. package/css/product-picker.css +36 -8
  3. package/css/theme.css +51 -20
  4. package/css/vars.css +1 -0
  5. package/dist/css/layout.css +37 -0
  6. package/dist/css/product-picker.css +36 -8
  7. package/dist/css/theme.css +51 -20
  8. package/dist/css/vars.css +1 -0
  9. package/dist/src/components/NetFoundryFooter/NetFoundryFooter.d.ts.map +1 -1
  10. package/dist/src/components/NetFoundryFooter/NetFoundryFooter.js +3 -2
  11. package/dist/src/components/NetFoundryFooter/NetFoundryFooter.js.map +1 -1
  12. package/dist/src/components/NetFoundryFooter/styles.module.css +1 -1
  13. package/dist/src/components/icons/DiscourseIcon.d.ts +8 -0
  14. package/dist/src/components/icons/DiscourseIcon.d.ts.map +1 -0
  15. package/dist/src/components/icons/DiscourseIcon.js +5 -0
  16. package/dist/src/components/icons/DiscourseIcon.js.map +1 -0
  17. package/dist/src/components/icons/GitHubIcon.d.ts +8 -0
  18. package/dist/src/components/icons/GitHubIcon.d.ts.map +1 -0
  19. package/dist/src/components/icons/GitHubIcon.js +5 -0
  20. package/dist/src/components/icons/GitHubIcon.js.map +1 -0
  21. package/dist/src/components/icons/XIcon.d.ts +8 -0
  22. package/dist/src/components/icons/XIcon.d.ts.map +1 -0
  23. package/dist/src/components/icons/XIcon.js +5 -0
  24. package/dist/src/components/icons/XIcon.js.map +1 -0
  25. package/dist/src/components/icons/YouTubeIcon.d.ts +8 -0
  26. package/dist/src/components/icons/YouTubeIcon.d.ts.map +1 -0
  27. package/dist/src/components/icons/YouTubeIcon.js +5 -0
  28. package/dist/src/components/icons/YouTubeIcon.js.map +1 -0
  29. package/dist/src/components/icons/index.d.ts +5 -0
  30. package/dist/src/components/icons/index.d.ts.map +1 -0
  31. package/dist/src/components/icons/index.js +5 -0
  32. package/dist/src/components/icons/index.js.map +1 -0
  33. package/dist/src/components/index.d.ts +1 -0
  34. package/dist/src/components/index.d.ts.map +1 -1
  35. package/dist/src/components/index.js +1 -0
  36. package/dist/src/components/index.js.map +1 -1
  37. package/dist/src/index.d.ts.map +1 -1
  38. package/dist/src/index.js +5 -0
  39. package/dist/src/index.js.map +1 -1
  40. package/dist/theme/NavbarItem/ComponentTypes.d.ts +4 -0
  41. package/dist/theme/NavbarItem/ComponentTypes.d.ts.map +1 -1
  42. package/dist/theme/NavbarItem/ComponentTypes.js +4 -0
  43. package/dist/theme/NavbarItem/ComponentTypes.js.map +1 -1
  44. package/dist/theme/NavbarItem/NavbarPicker.d.ts +13 -0
  45. package/dist/theme/NavbarItem/NavbarPicker.d.ts.map +1 -0
  46. package/dist/theme/NavbarItem/NavbarPicker.js +59 -0
  47. package/dist/theme/NavbarItem/NavbarPicker.js.map +1 -0
  48. package/dist/theme/NavbarItem/types/IconLinks/index.d.ts +4 -0
  49. package/dist/theme/NavbarItem/types/IconLinks/index.d.ts.map +1 -0
  50. package/dist/theme/NavbarItem/types/IconLinks/index.js +22 -0
  51. package/dist/theme/NavbarItem/types/IconLinks/index.js.map +1 -0
  52. package/dist/theme/NavbarItem/types/ProductPicker/index.d.ts.map +1 -1
  53. package/dist/theme/NavbarItem/types/ProductPicker/index.js +3 -49
  54. package/dist/theme/NavbarItem/types/ProductPicker/index.js.map +1 -1
  55. package/dist/theme/NavbarItem/types/ResourcesPicker/index.d.ts +8 -0
  56. package/dist/theme/NavbarItem/types/ResourcesPicker/index.d.ts.map +1 -0
  57. package/dist/theme/NavbarItem/types/ResourcesPicker/index.js +30 -0
  58. package/dist/theme/NavbarItem/types/ResourcesPicker/index.js.map +1 -0
  59. package/package.json +1 -1
  60. package/theme/NavbarItem/ComponentTypes.tsx +4 -0
  61. package/theme/NavbarItem/NavbarPicker.tsx +94 -0
  62. package/theme/NavbarItem/types/IconLinks/index.tsx +35 -0
  63. package/theme/NavbarItem/types/ProductPicker/index.tsx +88 -154
  64. package/theme/NavbarItem/types/ResourcesPicker/index.tsx +88 -0
  65. package/css/.claude/settings.local.json +0 -12
package/css/layout.css CHANGED
@@ -11,6 +11,43 @@ html {
11
11
  scrollbar-gutter: stable;
12
12
  }
13
13
 
14
+ /* Resources picker: sit after the color mode toggle, before search */
15
+ .navbar__items--right > div:has(.nf-picker-trigger) { order: 2; display: flex; align-items: center; }
16
+ .navbar__items--right > div:has(.DocSearch-Button) { order: 3; }
17
+
18
+ /* Separator between color mode toggle and resources picker */
19
+ .navbar__items--right > div:has(.nf-picker-trigger)::before {
20
+ content: '';
21
+ display: block;
22
+ width: 1px;
23
+ height: 1.2em;
24
+ background: currentColor;
25
+ opacity: 0.2;
26
+ margin-right: 0.75rem;
27
+ }
28
+
29
+ /* Discourse navbar icon — multicolor brand logo */
30
+ .nf-icon-link--discourse:hover {
31
+ opacity: 0.8;
32
+ color: inherit;
33
+ }
34
+
35
+ /* Navbar wordmark logo — taller than the Docusaurus default 2rem */
36
+ .navbar__logo { height: var(--ifm-navbar-height); }
37
+ .navbar__logo img { height: 100%; width: auto; }
38
+
39
+ /* Separator between navbar logo and nav items */
40
+ .navbar__brand::after {
41
+ content: '';
42
+ display: inline-block;
43
+ width: 1px;
44
+ height: 1.2em;
45
+ background: currentColor;
46
+ opacity: 0.2;
47
+ margin-left: 1rem;
48
+ vertical-align: middle;
49
+ }
50
+
14
51
  .main-wrapper > div {
15
52
  /* work around issue from docusaurus doc grow/shrinking based on content */
16
53
  width: 100%;
@@ -25,12 +25,14 @@
25
25
  position: relative;
26
26
  padding-right: 1.2rem;
27
27
  transition: color 0.3s ease;
28
+ font-weight: var(--ifm-font-weight-bold);
28
29
  }
29
30
 
30
31
  .nf-picker-trigger:hover,
31
32
  .nf-resources-dropdown:hover,
32
33
  .navbar__item.dropdown--show .nf-picker-trigger,
33
- .navbar__item.dropdown--show .nf-resources-dropdown {
34
+ .navbar__item.dropdown--show .nf-resources-dropdown,
35
+ .navbar__item.nf-picker--open .nf-picker-trigger {
34
36
  color: var(--ifm-color-primary);
35
37
  text-decoration: none;
36
38
  }
@@ -59,17 +61,17 @@
59
61
  opacity: 1;
60
62
  }
61
63
 
62
- /* Open: chevron rotates 180° */
64
+ /* Open: chevron holds the hover drop position */
63
65
  .nf-picker--open .nf-picker-trigger::after,
64
66
  .navbar__item.dropdown--show .nf-resources-dropdown::after {
65
- transform: translateY(-50%) rotate(180deg);
67
+ transform: translateY(-20%);
66
68
  opacity: 1;
67
69
  }
68
70
 
69
71
  /* Dark mode: cyan accent on hover */
70
72
  [data-theme='dark'] .nf-picker-trigger:hover,
71
73
  [data-theme='dark'] .nf-resources-dropdown:hover,
72
- [data-theme='dark'] .nf-picker--open .nf-picker-trigger,
74
+ [data-theme='dark'] .navbar__item.nf-picker--open .nf-picker-trigger,
73
75
  [data-theme='dark'] .navbar__item.dropdown--show .nf-resources-dropdown {
74
76
  color: #22d3ee;
75
77
  }
@@ -139,7 +141,9 @@
139
141
  }
140
142
 
141
143
  /* Narrower panel for the 2-column Resources menu */
142
- .dropdown__menu:has(.picker-resources) { max-width: 700px; }
144
+ .dropdown__menu:has(.picker-resources) { max-width: 400px; }
145
+ .nf-picker-panel--narrow { max-width: 430px; padding: 0.85rem 1.25rem; }
146
+
143
147
 
144
148
  /* Ensure visibility when open */
145
149
  .dropdown--show > .dropdown__menu,
@@ -181,9 +185,33 @@
181
185
  transition: all 0.2s ease;
182
186
  border-radius: 8px;
183
187
  }
184
- .picker-link:hover { background: rgba(0, 118, 255, 0.06); transform: translateX(3px); }
185
- .picker-link strong { color: var(--ifm-font-color-base); font-size: 0.95rem; font-weight: 900; letter-spacing: -0.02em; display: block; }
186
- .picker-link span { color: #64748b; font-size: 0.82rem; display: block; margin-top: 2px; line-height: 1.35; }
188
+ .picker-link:hover { background: rgba(0, 118, 255, 0.06); transform: translateX(3px); text-decoration: none; }
189
+ .picker-link strong { color: var(--ifm-font-color-base); font-size: 0.95rem; font-weight: 900; letter-spacing: -0.02em; display: block; text-decoration: none; }
190
+ .picker-link span { color: #64748b; font-size: 0.82rem; display: block; margin-top: 2px; line-height: 1.35; text-decoration: none; }
191
+ .nf-picker-panel--narrow .picker-link span { white-space: nowrap; }
192
+
193
+ /* ── Navbar icon links (GitHub, Discourse) ──────────────────────────────── */
194
+ .nf-icon-links {
195
+ display: flex;
196
+ align-items: center;
197
+ gap: 0.1rem;
198
+ }
199
+
200
+ .nf-icon-link,
201
+ .nf-icon-link:visited {
202
+ display: flex;
203
+ align-items: center;
204
+ justify-content: center;
205
+ width: 2rem;
206
+ height: 2rem;
207
+ color: var(--ifm-navbar-link-color);
208
+ text-decoration: none;
209
+ }
210
+
211
+ .nf-icon-link:hover {
212
+ color: var(--ifm-color-primary);
213
+ text-decoration: none;
214
+ }
187
215
 
188
216
  /* ── Mobile (<= 996 px) ─────────────────────────────────────────────────── */
189
217
  @media (max-width: 996px) {
package/css/theme.css CHANGED
@@ -1,20 +1,51 @@
1
- /**
2
- * NetFoundry Docusaurus Theme - Combined Styles
3
- *
4
- * This file is automatically loaded by the theme via getClientModules().
5
- *
6
- * Consuming projects no longer need to manually add these imports
7
- * to their custom.css files.
8
- */
9
-
10
- /* CSS variables for light mode */
11
- @import "./vars.css";
12
-
13
- /* CSS variables for dark mode */
14
- @import "./vars-dark.css";
15
-
16
- /* Layout styles */
17
- @import "./layout.css";
18
-
19
- /* Legacy design system variables and comprehensive styling */
20
- @import "./legacy.css";
1
+ /**
2
+ * NetFoundry Docusaurus Theme - Combined Styles
3
+ *
4
+ * This file is automatically loaded by the theme via getClientModules().
5
+ *
6
+ * Consuming projects no longer need to manually add these imports
7
+ * to their custom.css files.
8
+ */
9
+
10
+ /* CSS variables for light mode */
11
+ @import "./vars.css";
12
+
13
+ /* CSS variables for dark mode */
14
+ @import "./vars-dark.css";
15
+
16
+ /* Layout styles */
17
+ @import "./layout.css";
18
+
19
+ /* Legacy design system variables and comprehensive styling */
20
+ @import "./legacy.css";
21
+
22
+ /* ── Footer social link hover ───────────────────────────────────────────── */
23
+ footer a[class*="footerSocialLink"] {
24
+ transition: all 0.2s ease;
25
+ }
26
+
27
+ [data-theme='dark'] footer a[class*="footerSocialLink"] {
28
+ background-color: #1a2640;
29
+ color: #64748b;
30
+ border: 1px solid rgba(148, 163, 184, 0.1);
31
+ }
32
+ [data-theme='dark'] footer a[class*="footerSocialLink"]:hover {
33
+ background-color: #22d3ee;
34
+ color: #020617;
35
+ border-color: transparent;
36
+ transform: translateY(-3px);
37
+ box-shadow: 0 6px 16px rgba(34, 211, 238, 0.35);
38
+ }
39
+
40
+ [data-theme='light'] footer a[class*="footerSocialLink"] {
41
+ background-color: #e2e8f0;
42
+ color: #475569;
43
+ border: 1px solid rgba(0, 0, 0, 0.06);
44
+ }
45
+ [data-theme='light'] footer a[class*="footerSocialLink"]:hover {
46
+ background-color: #0891b2;
47
+ color: #ffffff;
48
+ border-color: transparent;
49
+ transform: translateY(-3px);
50
+ box-shadow: 0 6px 16px rgba(8, 145, 178, 0.3);
51
+ }
package/css/vars.css CHANGED
@@ -1,5 +1,6 @@
1
1
  :root {
2
2
  --ifm-navbar-height: 50px;
3
+ --ifm-navbar-padding-vertical: 0;
3
4
  --nf-docs-max-width: 1400px;
4
5
 
5
6
  --nf-color-primary: 119, 194, 252;
@@ -11,6 +11,43 @@ html {
11
11
  scrollbar-gutter: stable;
12
12
  }
13
13
 
14
+ /* Resources picker: sit after the color mode toggle, before search */
15
+ .navbar__items--right > div:has(.nf-picker-trigger) { order: 2; display: flex; align-items: center; }
16
+ .navbar__items--right > div:has(.DocSearch-Button) { order: 3; }
17
+
18
+ /* Separator between color mode toggle and resources picker */
19
+ .navbar__items--right > div:has(.nf-picker-trigger)::before {
20
+ content: '';
21
+ display: block;
22
+ width: 1px;
23
+ height: 1.2em;
24
+ background: currentColor;
25
+ opacity: 0.2;
26
+ margin-right: 0.75rem;
27
+ }
28
+
29
+ /* Discourse navbar icon — multicolor brand logo */
30
+ .nf-icon-link--discourse:hover {
31
+ opacity: 0.8;
32
+ color: inherit;
33
+ }
34
+
35
+ /* Navbar wordmark logo — taller than the Docusaurus default 2rem */
36
+ .navbar__logo { height: var(--ifm-navbar-height); }
37
+ .navbar__logo img { height: 100%; width: auto; }
38
+
39
+ /* Separator between navbar logo and nav items */
40
+ .navbar__brand::after {
41
+ content: '';
42
+ display: inline-block;
43
+ width: 1px;
44
+ height: 1.2em;
45
+ background: currentColor;
46
+ opacity: 0.2;
47
+ margin-left: 1rem;
48
+ vertical-align: middle;
49
+ }
50
+
14
51
  .main-wrapper > div {
15
52
  /* work around issue from docusaurus doc grow/shrinking based on content */
16
53
  width: 100%;
@@ -25,12 +25,14 @@
25
25
  position: relative;
26
26
  padding-right: 1.2rem;
27
27
  transition: color 0.3s ease;
28
+ font-weight: var(--ifm-font-weight-bold);
28
29
  }
29
30
 
30
31
  .nf-picker-trigger:hover,
31
32
  .nf-resources-dropdown:hover,
32
33
  .navbar__item.dropdown--show .nf-picker-trigger,
33
- .navbar__item.dropdown--show .nf-resources-dropdown {
34
+ .navbar__item.dropdown--show .nf-resources-dropdown,
35
+ .navbar__item.nf-picker--open .nf-picker-trigger {
34
36
  color: var(--ifm-color-primary);
35
37
  text-decoration: none;
36
38
  }
@@ -59,17 +61,17 @@
59
61
  opacity: 1;
60
62
  }
61
63
 
62
- /* Open: chevron rotates 180° */
64
+ /* Open: chevron holds the hover drop position */
63
65
  .nf-picker--open .nf-picker-trigger::after,
64
66
  .navbar__item.dropdown--show .nf-resources-dropdown::after {
65
- transform: translateY(-50%) rotate(180deg);
67
+ transform: translateY(-20%);
66
68
  opacity: 1;
67
69
  }
68
70
 
69
71
  /* Dark mode: cyan accent on hover */
70
72
  [data-theme='dark'] .nf-picker-trigger:hover,
71
73
  [data-theme='dark'] .nf-resources-dropdown:hover,
72
- [data-theme='dark'] .nf-picker--open .nf-picker-trigger,
74
+ [data-theme='dark'] .navbar__item.nf-picker--open .nf-picker-trigger,
73
75
  [data-theme='dark'] .navbar__item.dropdown--show .nf-resources-dropdown {
74
76
  color: #22d3ee;
75
77
  }
@@ -139,7 +141,9 @@
139
141
  }
140
142
 
141
143
  /* Narrower panel for the 2-column Resources menu */
142
- .dropdown__menu:has(.picker-resources) { max-width: 700px; }
144
+ .dropdown__menu:has(.picker-resources) { max-width: 400px; }
145
+ .nf-picker-panel--narrow { max-width: 430px; padding: 0.85rem 1.25rem; }
146
+
143
147
 
144
148
  /* Ensure visibility when open */
145
149
  .dropdown--show > .dropdown__menu,
@@ -181,9 +185,33 @@
181
185
  transition: all 0.2s ease;
182
186
  border-radius: 8px;
183
187
  }
184
- .picker-link:hover { background: rgba(0, 118, 255, 0.06); transform: translateX(3px); }
185
- .picker-link strong { color: var(--ifm-font-color-base); font-size: 0.95rem; font-weight: 900; letter-spacing: -0.02em; display: block; }
186
- .picker-link span { color: #64748b; font-size: 0.82rem; display: block; margin-top: 2px; line-height: 1.35; }
188
+ .picker-link:hover { background: rgba(0, 118, 255, 0.06); transform: translateX(3px); text-decoration: none; }
189
+ .picker-link strong { color: var(--ifm-font-color-base); font-size: 0.95rem; font-weight: 900; letter-spacing: -0.02em; display: block; text-decoration: none; }
190
+ .picker-link span { color: #64748b; font-size: 0.82rem; display: block; margin-top: 2px; line-height: 1.35; text-decoration: none; }
191
+ .nf-picker-panel--narrow .picker-link span { white-space: nowrap; }
192
+
193
+ /* ── Navbar icon links (GitHub, Discourse) ──────────────────────────────── */
194
+ .nf-icon-links {
195
+ display: flex;
196
+ align-items: center;
197
+ gap: 0.1rem;
198
+ }
199
+
200
+ .nf-icon-link,
201
+ .nf-icon-link:visited {
202
+ display: flex;
203
+ align-items: center;
204
+ justify-content: center;
205
+ width: 2rem;
206
+ height: 2rem;
207
+ color: var(--ifm-navbar-link-color);
208
+ text-decoration: none;
209
+ }
210
+
211
+ .nf-icon-link:hover {
212
+ color: var(--ifm-color-primary);
213
+ text-decoration: none;
214
+ }
187
215
 
188
216
  /* ── Mobile (<= 996 px) ─────────────────────────────────────────────────── */
189
217
  @media (max-width: 996px) {
@@ -1,20 +1,51 @@
1
- /**
2
- * NetFoundry Docusaurus Theme - Combined Styles
3
- *
4
- * This file is automatically loaded by the theme via getClientModules().
5
- *
6
- * Consuming projects no longer need to manually add these imports
7
- * to their custom.css files.
8
- */
9
-
10
- /* CSS variables for light mode */
11
- @import "./vars.css";
12
-
13
- /* CSS variables for dark mode */
14
- @import "./vars-dark.css";
15
-
16
- /* Layout styles */
17
- @import "./layout.css";
18
-
19
- /* Legacy design system variables and comprehensive styling */
20
- @import "./legacy.css";
1
+ /**
2
+ * NetFoundry Docusaurus Theme - Combined Styles
3
+ *
4
+ * This file is automatically loaded by the theme via getClientModules().
5
+ *
6
+ * Consuming projects no longer need to manually add these imports
7
+ * to their custom.css files.
8
+ */
9
+
10
+ /* CSS variables for light mode */
11
+ @import "./vars.css";
12
+
13
+ /* CSS variables for dark mode */
14
+ @import "./vars-dark.css";
15
+
16
+ /* Layout styles */
17
+ @import "./layout.css";
18
+
19
+ /* Legacy design system variables and comprehensive styling */
20
+ @import "./legacy.css";
21
+
22
+ /* ── Footer social link hover ───────────────────────────────────────────── */
23
+ footer a[class*="footerSocialLink"] {
24
+ transition: all 0.2s ease;
25
+ }
26
+
27
+ [data-theme='dark'] footer a[class*="footerSocialLink"] {
28
+ background-color: #1a2640;
29
+ color: #64748b;
30
+ border: 1px solid rgba(148, 163, 184, 0.1);
31
+ }
32
+ [data-theme='dark'] footer a[class*="footerSocialLink"]:hover {
33
+ background-color: #22d3ee;
34
+ color: #020617;
35
+ border-color: transparent;
36
+ transform: translateY(-3px);
37
+ box-shadow: 0 6px 16px rgba(34, 211, 238, 0.35);
38
+ }
39
+
40
+ [data-theme='light'] footer a[class*="footerSocialLink"] {
41
+ background-color: #e2e8f0;
42
+ color: #475569;
43
+ border: 1px solid rgba(0, 0, 0, 0.06);
44
+ }
45
+ [data-theme='light'] footer a[class*="footerSocialLink"]:hover {
46
+ background-color: #0891b2;
47
+ color: #ffffff;
48
+ border-color: transparent;
49
+ transform: translateY(-3px);
50
+ box-shadow: 0 6px 16px rgba(8, 145, 178, 0.3);
51
+ }
package/dist/css/vars.css CHANGED
@@ -1,5 +1,6 @@
1
1
  :root {
2
2
  --ifm-navbar-height: 50px;
3
+ --ifm-navbar-padding-vertical: 0;
3
4
  --nf-docs-max-width: 1400px;
4
5
 
5
6
  --nf-color-primary: 119, 194, 252;
@@ -1 +1 @@
1
- {"version":3,"file":"NetFoundryFooter.d.ts","sourceRoot":"","sources":["../../../../src/components/NetFoundryFooter/NetFoundryFooter.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAC,aAAa,EAAE,SAAS,EAAC,MAAM,OAAO,CAAC;AAMtD,MAAM,WAAW,WAAW;IACxB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,UAAU,CAAC,EAAE,MAAM,CAAC;CACvB;AACD,eAAO,MAAM,kBAAkB,EAAE,WAOhC,CAAC;AAGF,MAAM,MAAM,UAAU,GAAG,KAAK,CAAC,SAAS,GAAG;IAAE,IAAI,EAAE,MAAM,CAAC;IAAC,KAAK,EAAE,MAAM,CAAA;CAAE,CAAC;AAE3E,MAAM,MAAM,qBAAqB,GAAG;IAChC,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,KAAK,CAAC,EAAE,aAAa,CAAC;IACtB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,WAAW,CAAC,EAAE,WAAW,CAAC;IAC1B,kBAAkB,CAAC,EAAE,UAAU,EAAE,CAAC;IAClC,cAAc,CAAC,EAAE,UAAU,EAAE,CAAC;IAC9B,aAAa,CAAC,EAAE,UAAU,EAAE,CAAC;IAC7B,QAAQ,CAAC,EAAE,SAAS,CAAC;CACxB,CAAC;AAUF,wBAAgB,4BAA4B,CAAC,SAAS,CAAC,EAAE,OAAO,CAAC,qBAAqB,CAAC,GAAG,qBAAqB,CAyB9G;AAcD,wBAAgB,gBAAgB,CAAC,KAAK,EAAE,qBAAqB,2CA0F5D"}
1
+ {"version":3,"file":"NetFoundryFooter.d.ts","sourceRoot":"","sources":["../../../../src/components/NetFoundryFooter/NetFoundryFooter.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAC,aAAa,EAAE,SAAS,EAAC,MAAM,OAAO,CAAC;AAOtD,MAAM,WAAW,WAAW;IACxB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,UAAU,CAAC,EAAE,MAAM,CAAC;CACvB;AACD,eAAO,MAAM,kBAAkB,EAAE,WAOhC,CAAC;AAGF,MAAM,MAAM,UAAU,GAAG,KAAK,CAAC,SAAS,GAAG;IAAE,IAAI,EAAE,MAAM,CAAC;IAAC,KAAK,EAAE,MAAM,CAAA;CAAE,CAAC;AAE3E,MAAM,MAAM,qBAAqB,GAAG;IAChC,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,KAAK,CAAC,EAAE,aAAa,CAAC;IACtB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,WAAW,CAAC,EAAE,WAAW,CAAC;IAC1B,kBAAkB,CAAC,EAAE,UAAU,EAAE,CAAC;IAClC,cAAc,CAAC,EAAE,UAAU,EAAE,CAAC;IAC9B,aAAa,CAAC,EAAE,UAAU,EAAE,CAAC;IAC7B,QAAQ,CAAC,EAAE,SAAS,CAAC;CACxB,CAAC;AAUF,wBAAgB,4BAA4B,CAAC,SAAS,CAAC,EAAE,OAAO,CAAC,qBAAqB,CAAC,GAAG,qBAAqB,CAyB9G;AAcD,wBAAgB,gBAAgB,CAAC,KAAK,EAAE,qBAAqB,2CAoF5D"}
@@ -3,6 +3,7 @@ import clsx from 'clsx';
3
3
  import { NetFoundryHorizontalSection } from "../NetFoundryHorizontalSection";
4
4
  import useBaseUrl from "@docusaurus/useBaseUrl";
5
5
  import styles from './styles.module.css';
6
+ import { GitHubIcon, XIcon, YouTubeIcon } from '../icons';
6
7
  export const defaultSocialProps = {
7
8
  twitterUrl: '',
8
9
  linkedInUrl: '',
@@ -54,7 +55,7 @@ export function NetFoundryFooter(props) {
54
55
  const sp = { ...defaultSocialProps, ...(props.socialProps ?? {}) };
55
56
  if (children)
56
57
  return _jsx(_Fragment, { children: children });
57
- return (_jsx("footer", { className: clsx(className, styles.ozFooter), style: style, children: _jsxs(NetFoundryHorizontalSection, { className: styles.footer, children: [_jsx("div", { className: styles.footerContainer, children: _jsxs("div", { className: styles.footerGrid, children: [_jsxs("div", { className: styles.footerColumn, children: [_jsx("h3", { children: "NetFoundry" }), _jsx("p", { children: description ?? 'An open source project enabling developers to embed zero trust networking directly into applications.' }), _jsxs("div", { className: styles.footerSocialLinks, children: [sp.githubUrl && (_jsx("a", { href: sp.githubUrl, target: "_blank", className: styles.footerSocialLink, rel: "noreferrer", children: _jsx("svg", { width: "20", height: "20", viewBox: "0 0 16 16", fill: "currentColor", xmlns: "http://www.w3.org/2000/svg", children: _jsx("path", { d: "M8 0C3.58 0 0 3.58 0 8C0 11.54 2.29 14.53 5.47 15.59C5.87 15.66 6.02 15.42 6.02 15.21C6.02 15.02 6.01 14.39 6.01 13.72C4 14.09 3.48 13.23 3.32 12.78C3.23 12.55 2.84 11.84 2.5 11.65C2.22 11.5 1.82 11.13 2.49 11.12C3.12 11.11 3.57 11.7 3.72 11.94C4.44 13.15 5.59 12.81 6.05 12.6C6.12 12.08 6.33 11.73 6.56 11.53C4.78 11.33 2.92 10.64 2.92 7.58C2.92 6.71 3.23 5.99 3.74 5.43C3.66 5.23 3.38 4.41 3.82 3.31C3.82 3.31 4.49 3.1 6.02 4.13C6.66 3.95 7.34 3.86 8.02 3.86C8.7 3.86 9.38 3.95 10.02 4.13C11.55 3.09 12.22 3.31 12.22 3.31C12.66 4.41 12.38 5.23 12.3 5.43C12.81 5.99 13.12 6.7 13.12 7.58C13.12 10.65 11.25 11.33 9.47 11.53C9.76 11.78 10.01 12.26 10.01 13.01C10.01 14.08 10 14.94 10 15.21C10 15.42 10.15 15.67 10.55 15.59C13.71 14.53 16 11.53 16 8C16 3.58 12.42 0 8 0Z" }) }) })), sp.linkedInUrl && (_jsx("a", { href: sp.linkedInUrl, target: "_blank", className: styles.footerSocialLink, rel: "noreferrer", children: _jsxs("svg", { width: "16", height: "16", viewBox: "0 0 16 16", fill: "currentColor", xmlns: "http://www.w3.org/2000/svg", children: [_jsx("path", { d: "M15.996 16V10.1C15.996 7.5 15.375 5.49999 12.025 5.49999C10.4 5.49999 9.325 6.39999 8.875 7.29999H8.825V5.79999H5.65V16H8.95V10.7C8.95 9.30001 9.2 7.9 10.925 7.9C12.65 7.9 12.675 9.59999 12.675 10.8V16H15.996Z" }), _jsx("path", { d: "M0.25 5.79999H3.575V16H0.25V5.79999Z" }), _jsx("path", { d: "M1.9 0C0.85 0 0 0.85 0 1.9C0 2.95 0.85 3.8 1.9 3.8C2.95 3.8 3.8 2.95 3.8 1.9C3.8 0.85 2.95 0 1.9 0Z" })] }) })), sp.youtubeUrl && (_jsx("a", { href: sp.youtubeUrl, target: "_blank", className: styles.footerSocialLink, rel: "noreferrer", children: _jsx("svg", { width: "16", height: "16", viewBox: "0 0 16 16", fill: "currentColor", xmlns: "http://www.w3.org/2000/svg", children: _jsx("path", { d: "M15.969 4.69c-.183-1.358-1.062-2.275-2.361-2.46C12.371 2 8 2 8 2S3.629 2 2.362 2.229c-1.3.186-2.179 1.103-2.361 2.461C0 6.03 0 10 0 10s0 3.97.2 5.31c.183 1.358 1.062 2.275 2.361 2.46C3.63 18 8 18 8 18s4.371 0 5.638-.23c1.3-.185 2.178-1.102 2.361-2.46.2-1.34.2-5.31.2-5.31s0-3.97-.23-5.31zm-8.36, 8.57V6.73l3.76 2.27-3.76 2.26z" }) }) })), sp.twitterUrl && (_jsx("a", { href: sp.twitterUrl, target: "_blank", className: styles.footerSocialLink, rel: "noreferrer", children: _jsx("svg", { width: "16", height: "16", viewBox: "0 0 16 16", fill: "currentColor", xmlns: "http://www.w3.org/2000/svg", children: _jsx("path", { d: "M15.996 3.038c-.59.262-1.219.44-1.885.52.677-.406 1.194-1.05 1.438-1.815-.634.375-1.337.648-2.085.795-.598-.638-1.45-1.038-2.396-1.038-1.813 0-3.283 1.469-3.283 3.282 0 .257.03.507.085.748-2.728-.137-5.147-1.445-6.766-3.43-.282.485-.444 1.05-.444 1.651 0 1.14.58 2.143 1.46 2.732-.538-.017-1.044-.164-1.487-.41v.04c0 1.59 1.13 2.918 2.633 3.219-.276.075-.567.116-.866.116-.211 0-.416-.021-.617-.06.418 1.304 1.63 2.254 3.066 2.28-1.124.883-2.539 1.406-4.077 1.406-.265 0-.526-.015-.785-.046 1.453.933 3.178 1.475 5.032 1.475 6.038 0 9.34-5.002 9.34-9.34 0-.142-.004-.284-.01-.425.641-.463 1.198-1.039 1.638-1.696" }) }) })), sp.facebookUrl && (_jsx("a", { href: sp.facebookUrl, target: "_blank", className: styles.footerSocialLink, rel: "noreferrer", children: _jsx("span", { children: "f" }) })), sp.instagramUrl && (_jsx("a", { href: sp.instagramUrl, target: "_blank", className: styles.footerSocialLink, rel: "noreferrer", children: _jsx("span", { children: "ig" }) }))] })] }), _jsx(ListBlock, { title: "Documentation", items: props.documentationLinks ?? [
58
+ return (_jsx("footer", { className: clsx(className, styles.ozFooter), style: style, children: _jsxs(NetFoundryHorizontalSection, { className: styles.footer, children: [_jsx("div", { className: styles.footerContainer, children: _jsxs("div", { className: styles.footerGrid, children: [_jsxs("div", { className: styles.footerColumn, children: [_jsx("h3", { children: "NetFoundry" }), _jsx("p", { children: description ?? 'An open source project enabling developers to embed zero trust networking directly into applications.' }), _jsxs("div", { className: styles.footerSocialLinks, children: [sp.githubUrl && (_jsx("a", { href: sp.githubUrl, target: "_blank", className: styles.footerSocialLink, rel: "noreferrer", children: _jsx(GitHubIcon, { width: 20, height: 20 }) })), sp.linkedInUrl && (_jsx("a", { href: sp.linkedInUrl, target: "_blank", className: styles.footerSocialLink, rel: "noreferrer", children: _jsxs("svg", { width: "16", height: "16", viewBox: "0 0 16 16", fill: "currentColor", xmlns: "http://www.w3.org/2000/svg", children: [_jsx("path", { d: "M15.996 16V10.1C15.996 7.5 15.375 5.49999 12.025 5.49999C10.4 5.49999 9.325 6.39999 8.875 7.29999H8.825V5.79999H5.65V16H8.95V10.7C8.95 9.30001 9.2 7.9 10.925 7.9C12.65 7.9 12.675 9.59999 12.675 10.8V16H15.996Z" }), _jsx("path", { d: "M0.25 5.79999H3.575V16H0.25V5.79999Z" }), _jsx("path", { d: "M1.9 0C0.85 0 0 0.85 0 1.9C0 2.95 0.85 3.8 1.9 3.8C2.95 3.8 3.8 2.95 3.8 1.9C3.8 0.85 2.95 0 1.9 0Z" })] }) })), sp.youtubeUrl && (_jsx("a", { href: sp.youtubeUrl, target: "_blank", className: styles.footerSocialLink, rel: "noreferrer", children: _jsx(YouTubeIcon, { width: 16, height: 16 }) })), sp.twitterUrl && (_jsx("a", { href: sp.twitterUrl, target: "_blank", className: styles.footerSocialLink, rel: "noreferrer", children: _jsx(XIcon, { width: 16, height: 16 }) })), sp.facebookUrl && (_jsx("a", { href: sp.facebookUrl, target: "_blank", className: styles.footerSocialLink, rel: "noreferrer", children: _jsx("span", { children: "f" }) })), sp.instagramUrl && (_jsx("a", { href: sp.instagramUrl, target: "_blank", className: styles.footerSocialLink, rel: "noreferrer", children: _jsx("span", { children: "ig" }) }))] })] }), _jsx(ListBlock, { title: "Documentation", items: props.documentationLinks ?? [
58
59
  _jsx("a", { href: useBaseUrl("/docs/learn/quickstarts/services/ztha"), children: "Getting Started" }),
59
60
  _jsx("a", { href: useBaseUrl("/docs/reference/developer/api/"), children: "API Reference" }),
60
61
  _jsx("a", { href: useBaseUrl("/docs/reference/developer/sdk/"), children: "SDK Integration" }),
@@ -65,6 +66,6 @@ export function NetFoundryFooter(props) {
65
66
  ] }), _jsx(ListBlock, { title: "Resources", items: props.resourceLinks ?? [
66
67
  _jsx("a", { href: "https://blog.openziti.io", children: "OpenZiti Tech Blog" }),
67
68
  _jsx("a", { href: "https://netfoundry.io/", children: "NetFoundry" }),
68
- ] })] }) }), _jsx("div", { className: styles.footerCopyright, children: _jsx("p", { children: "\u00A9 2025 NetFoundry Inc. OpenZiti is an open source project sponsored by NetFoundry. All rights reserved." }) })] }) }));
69
+ ] })] }) }), _jsx("div", { className: styles.footerCopyright, children: _jsxs("p", { children: ["\u00A9 ", new Date().getFullYear(), " NetFoundry Inc. OpenZiti is an open source project sponsored by NetFoundry. All rights reserved."] }) })] }) }));
69
70
  }
70
71
  //# sourceMappingURL=NetFoundryFooter.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"NetFoundryFooter.js","sourceRoot":"","sources":["../../../../src/components/NetFoundryFooter/NetFoundryFooter.tsx"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"NetFoundryFooter.js","sourceRoot":"","sources":["../../../../src/components/NetFoundryFooter/NetFoundryFooter.tsx"],"names":[],"mappings":"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"}
@@ -86,7 +86,7 @@
86
86
  }
87
87
 
88
88
  .footerSocialLink:hover {
89
- background-color: var(--primary);
89
+ background-color: var(--ifm-color-primary);
90
90
  transform: translateY(-3px);
91
91
  }
92
92
 
@@ -0,0 +1,8 @@
1
+ type Props = {
2
+ width?: number;
3
+ height?: number;
4
+ className?: string;
5
+ };
6
+ export default function DiscourseIcon({ width, height, className }: Props): import("react/jsx-runtime").JSX.Element;
7
+ export {};
8
+ //# sourceMappingURL=DiscourseIcon.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"DiscourseIcon.d.ts","sourceRoot":"","sources":["../../../../src/components/icons/DiscourseIcon.tsx"],"names":[],"mappings":"AAEA,KAAK,KAAK,GAAG;IAAE,KAAK,CAAC,EAAE,MAAM,CAAC;IAAC,MAAM,CAAC,EAAE,MAAM,CAAC;IAAC,SAAS,CAAC,EAAE,MAAM,CAAA;CAAE,CAAC;AAErE,MAAM,CAAC,OAAO,UAAU,aAAa,CAAC,EAAC,KAAU,EAAE,MAAW,EAAE,SAAS,EAAC,EAAE,KAAK,2CAWhF"}
@@ -0,0 +1,5 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ export default function DiscourseIcon({ width = 24, height = 24, className }) {
3
+ return (_jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 -1 104 106", width: width, height: height, className: className, children: [_jsx("path", { fill: "#231f20", d: "M51.87 0C23.71 0 0 22.83 0 51v52.81l51.86-.05c28.16 0 51-23.71 51-51.87S80 0 51.87 0Z" }), _jsx("path", { fill: "#fff9ae", d: "M52.37 19.74a31.62 31.62 0 0 0-27.79 46.67l-5.72 18.4 20.54-4.64a31.61 31.61 0 1 0 13-60.43Z" }), _jsx("path", { fill: "#00aeef", d: "M77.45 32.12a31.6 31.6 0 0 1-38.05 48l-20.54 4.7 20.91-2.47a31.6 31.6 0 0 0 37.68-50.23Z" }), _jsx("path", { fill: "#00a94f", d: "M71.63 26.29A31.6 31.6 0 0 1 38.8 78l-19.94 6.82 20.54-4.65a31.6 31.6 0 0 0 32.23-53.88Z" }), _jsx("path", { fill: "#f15d22", d: "M26.47 67.11a31.61 31.61 0 0 1 51-35 31.61 31.61 0 0 0-52.89 34.3l-5.72 18.4Z" }), _jsx("path", { fill: "#e31b23", d: "M24.58 66.41a31.61 31.61 0 0 1 47.05-40.12 31.61 31.61 0 0 0-49 39.63l-3.76 18.9Z" })] }));
4
+ }
5
+ //# sourceMappingURL=DiscourseIcon.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"DiscourseIcon.js","sourceRoot":"","sources":["../../../../src/components/icons/DiscourseIcon.tsx"],"names":[],"mappings":";AAIA,MAAM,CAAC,OAAO,UAAU,aAAa,CAAC,EAAC,KAAK,GAAG,EAAE,EAAE,MAAM,GAAG,EAAE,EAAE,SAAS,EAAQ;IAC/E,OAAO,CACL,eAAK,KAAK,EAAC,4BAA4B,EAAC,OAAO,EAAC,cAAc,EAAC,KAAK,EAAE,KAAK,EAAE,MAAM,EAAE,MAAM,EAAE,SAAS,EAAE,SAAS,aAC/G,eAAM,IAAI,EAAC,SAAS,EAAC,CAAC,EAAC,uFAAuF,GAAE,EAChH,eAAM,IAAI,EAAC,SAAS,EAAC,CAAC,EAAC,8FAA8F,GAAE,EACvH,eAAM,IAAI,EAAC,SAAS,EAAC,CAAC,EAAC,0FAA0F,GAAE,EACnH,eAAM,IAAI,EAAC,SAAS,EAAC,CAAC,EAAC,0FAA0F,GAAE,EACnH,eAAM,IAAI,EAAC,SAAS,EAAC,CAAC,EAAC,+EAA+E,GAAE,EACxG,eAAM,IAAI,EAAC,SAAS,EAAC,CAAC,EAAC,mFAAmF,GAAE,IACxG,CACP,CAAC;AACJ,CAAC"}
@@ -0,0 +1,8 @@
1
+ type Props = {
2
+ width?: number;
3
+ height?: number;
4
+ className?: string;
5
+ };
6
+ export default function GitHubIcon({ width, height, className }: Props): import("react/jsx-runtime").JSX.Element;
7
+ export {};
8
+ //# sourceMappingURL=GitHubIcon.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"GitHubIcon.d.ts","sourceRoot":"","sources":["../../../../src/components/icons/GitHubIcon.tsx"],"names":[],"mappings":"AAEA,KAAK,KAAK,GAAG;IAAE,KAAK,CAAC,EAAE,MAAM,CAAC;IAAC,MAAM,CAAC,EAAE,MAAM,CAAC;IAAC,SAAS,CAAC,EAAE,MAAM,CAAA;CAAE,CAAC;AAErE,MAAM,CAAC,OAAO,UAAU,UAAU,CAAC,EAAC,KAAU,EAAE,MAAW,EAAE,SAAS,EAAC,EAAE,KAAK,2CAM7E"}
@@ -0,0 +1,5 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ export default function GitHubIcon({ width = 24, height = 24, className }) {
3
+ return (_jsx("svg", { width: width, height: height, viewBox: "0 0 16 16", fill: "currentColor", xmlns: "http://www.w3.org/2000/svg", className: className, children: _jsx("path", { d: "M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27.68 0 1.36.09 2 .27 1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.013 8.013 0 0 0 16 8c0-4.42-3.58-8-8-8z" }) }));
4
+ }
5
+ //# sourceMappingURL=GitHubIcon.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"GitHubIcon.js","sourceRoot":"","sources":["../../../../src/components/icons/GitHubIcon.tsx"],"names":[],"mappings":";AAIA,MAAM,CAAC,OAAO,UAAU,UAAU,CAAC,EAAC,KAAK,GAAG,EAAE,EAAE,MAAM,GAAG,EAAE,EAAE,SAAS,EAAQ;IAC5E,OAAO,CACL,cAAK,KAAK,EAAE,KAAK,EAAE,MAAM,EAAE,MAAM,EAAE,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,EAAC,KAAK,EAAC,4BAA4B,EAAC,SAAS,EAAE,SAAS,YAChI,eAAM,CAAC,EAAC,4jBAA4jB,GAAE,GAClkB,CACP,CAAC;AACJ,CAAC"}
@@ -0,0 +1,8 @@
1
+ type Props = {
2
+ width?: number;
3
+ height?: number;
4
+ className?: string;
5
+ };
6
+ export default function XIcon({ width, height, className }: Props): import("react/jsx-runtime").JSX.Element;
7
+ export {};
8
+ //# sourceMappingURL=XIcon.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"XIcon.d.ts","sourceRoot":"","sources":["../../../../src/components/icons/XIcon.tsx"],"names":[],"mappings":"AAEA,KAAK,KAAK,GAAG;IAAE,KAAK,CAAC,EAAE,MAAM,CAAC;IAAC,MAAM,CAAC,EAAE,MAAM,CAAC;IAAC,SAAS,CAAC,EAAE,MAAM,CAAA;CAAE,CAAC;AAErE,MAAM,CAAC,OAAO,UAAU,KAAK,CAAC,EAAC,KAAU,EAAE,MAAW,EAAE,SAAS,EAAC,EAAE,KAAK,2CAMxE"}
@@ -0,0 +1,5 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ export default function XIcon({ width = 16, height = 16, className }) {
3
+ return (_jsx("svg", { width: width, height: height, viewBox: "0 0 24 24", fill: "currentColor", xmlns: "http://www.w3.org/2000/svg", className: className, children: _jsx("path", { d: "M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z" }) }));
4
+ }
5
+ //# sourceMappingURL=XIcon.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"XIcon.js","sourceRoot":"","sources":["../../../../src/components/icons/XIcon.tsx"],"names":[],"mappings":";AAIA,MAAM,CAAC,OAAO,UAAU,KAAK,CAAC,EAAC,KAAK,GAAG,EAAE,EAAE,MAAM,GAAG,EAAE,EAAE,SAAS,EAAQ;IACvE,OAAO,CACL,cAAK,KAAK,EAAE,KAAK,EAAE,MAAM,EAAE,MAAM,EAAE,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,EAAC,KAAK,EAAC,4BAA4B,EAAC,SAAS,EAAE,SAAS,YAChI,eAAM,CAAC,EAAC,6JAA6J,GAAE,GACnK,CACP,CAAC;AACJ,CAAC"}
@@ -0,0 +1,8 @@
1
+ type Props = {
2
+ width?: number;
3
+ height?: number;
4
+ className?: string;
5
+ };
6
+ export default function YouTubeIcon({ width, height, className }: Props): import("react/jsx-runtime").JSX.Element;
7
+ export {};
8
+ //# sourceMappingURL=YouTubeIcon.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"YouTubeIcon.d.ts","sourceRoot":"","sources":["../../../../src/components/icons/YouTubeIcon.tsx"],"names":[],"mappings":"AAEA,KAAK,KAAK,GAAG;IAAE,KAAK,CAAC,EAAE,MAAM,CAAC;IAAC,MAAM,CAAC,EAAE,MAAM,CAAC;IAAC,SAAS,CAAC,EAAE,MAAM,CAAA;CAAE,CAAC;AAErE,MAAM,CAAC,OAAO,UAAU,WAAW,CAAC,EAAC,KAAU,EAAE,MAAW,EAAE,SAAS,EAAC,EAAE,KAAK,2CAO9E"}
@@ -0,0 +1,5 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ export default function YouTubeIcon({ width = 24, height = 24, className }) {
3
+ return (_jsxs("svg", { viewBox: "0 0 24 24", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, className: className, children: [_jsx("path", { d: "M22.54 6.42a2.78 2.78 0 0 0-1.95-1.97C18.88 4 12 4 12 4s-6.88 0-8.59.45A2.78 2.78 0 0 0 1.46 6.42 29 29 0 0 0 1 12a29 29 0 0 0 .46 5.58A2.78 2.78 0 0 0 3.41 19.6C5.12 20 12 20 12 20s6.88 0 8.59-.45a2.78 2.78 0 0 0 1.95-1.97A29 29 0 0 0 23 12a29 29 0 0 0-.46-5.58z", fill: "#ff0000" }), _jsx("polygon", { points: "9.75 15.02 15.5 12 9.75 8.98 9.75 15.02", fill: "white" })] }));
4
+ }
5
+ //# sourceMappingURL=YouTubeIcon.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"YouTubeIcon.js","sourceRoot":"","sources":["../../../../src/components/icons/YouTubeIcon.tsx"],"names":[],"mappings":";AAIA,MAAM,CAAC,OAAO,UAAU,WAAW,CAAC,EAAC,KAAK,GAAG,EAAE,EAAE,MAAM,GAAG,EAAE,EAAE,SAAS,EAAQ;IAC7E,OAAO,CACL,eAAK,OAAO,EAAC,WAAW,EAAC,KAAK,EAAC,4BAA4B,EAAC,KAAK,EAAE,KAAK,EAAE,MAAM,EAAE,MAAM,EAAE,SAAS,EAAE,SAAS,aAC5G,eAAM,CAAC,EAAC,yQAAyQ,EAAC,IAAI,EAAC,SAAS,GAAE,EAClS,kBAAS,MAAM,EAAC,yCAAyC,EAAC,IAAI,EAAC,OAAO,GAAE,IACpE,CACP,CAAC;AACJ,CAAC"}
@@ -0,0 +1,5 @@
1
+ export { default as DiscourseIcon } from './DiscourseIcon';
2
+ export { default as GitHubIcon } from './GitHubIcon';
3
+ export { default as XIcon } from './XIcon';
4
+ export { default as YouTubeIcon } from './YouTubeIcon';
5
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/icons/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,OAAO,IAAI,aAAa,EAAC,MAAM,iBAAiB,CAAC;AACzD,OAAO,EAAC,OAAO,IAAI,UAAU,EAAC,MAAM,cAAc,CAAC;AACnD,OAAO,EAAC,OAAO,IAAI,KAAK,EAAC,MAAM,SAAS,CAAC;AACzC,OAAO,EAAC,OAAO,IAAI,WAAW,EAAC,MAAM,eAAe,CAAC"}
@@ -0,0 +1,5 @@
1
+ export { default as DiscourseIcon } from './DiscourseIcon';
2
+ export { default as GitHubIcon } from './GitHubIcon';
3
+ export { default as XIcon } from './XIcon';
4
+ export { default as YouTubeIcon } from './YouTubeIcon';
5
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/components/icons/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,OAAO,IAAI,aAAa,EAAC,MAAM,iBAAiB,CAAC;AACzD,OAAO,EAAC,OAAO,IAAI,UAAU,EAAC,MAAM,cAAc,CAAC;AACnD,OAAO,EAAC,OAAO,IAAI,KAAK,EAAC,MAAM,SAAS,CAAC;AACzC,OAAO,EAAC,OAAO,IAAI,WAAW,EAAC,MAAM,eAAe,CAAC"}
@@ -1,4 +1,5 @@
1
1
  export * from './Alert';
2
+ export * from './icons';
2
3
  export * from './CodeBlock';
3
4
  export * from './Common';
4
5
  export * from './DownloadCard';