@sp-days-framework/create-sp-days 1.0.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 (87) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +318 -0
  3. package/bin/index.js +86 -0
  4. package/lib/index.d.ts +20 -0
  5. package/lib/index.js +454 -0
  6. package/package.json +41 -0
  7. package/sp-days-framework-create-sp-days-1.0.0.tgz +0 -0
  8. package/templates/addon-resources/resources/frontpage-collection/components/Columns.mdx +191 -0
  9. package/templates/addon-resources/resources/frontpage-collection/components/ContentBlock.mdx +126 -0
  10. package/templates/addon-resources/resources/frontpage-collection/components/CourseFeature.mdx +147 -0
  11. package/templates/addon-resources/resources/frontpage-collection/components/FancyHeader.mdx +76 -0
  12. package/templates/addon-resources/resources/frontpage-collection/components/GetStarted.mdx +222 -0
  13. package/templates/addon-resources/resources/frontpage-collection/components/HeroBanner.mdx +205 -0
  14. package/templates/addon-resources/resources/frontpage-collection/components/IconContainer.mdx +249 -0
  15. package/templates/addon-resources/resources/frontpage-collection/components/Iconify.mdx +228 -0
  16. package/templates/addon-resources/resources/frontpage-collection/components/_category_.yml +2 -0
  17. package/templates/addon-resources/resources/frontpage-collection/index.mdx +85 -0
  18. package/templates/addon-resources/resources/frontpage-collection/setup/index.mdx +185 -0
  19. package/templates/addon-resources/resources/index.mdx +35 -0
  20. package/templates/addon-resources/resources/interactive-tasks/creating-tasks.mdx +292 -0
  21. package/templates/addon-resources/resources/interactive-tasks/examples/_category_.yml +3 -0
  22. package/templates/addon-resources/resources/interactive-tasks/examples/advanced-usage.mdx +304 -0
  23. package/templates/addon-resources/resources/interactive-tasks/examples/basic-usage.mdx +128 -0
  24. package/templates/addon-resources/resources/interactive-tasks/index.mdx +93 -0
  25. package/templates/addon-resources/resources/interactive-tasks/setup/advanced-configuration.mdx +150 -0
  26. package/templates/addon-resources/resources/interactive-tasks/setup/index.mdx +174 -0
  27. package/templates/addon-resources/resources/interactive-tasks/task-progression.mdx +140 -0
  28. package/templates/addon-resources/resources/slidev-integration/index.mdx +106 -0
  29. package/templates/addon-resources/resources/slidev-integration/setup/advanced-configuration.mdx +144 -0
  30. package/templates/addon-resources/resources/slidev-integration/setup/index.mdx +200 -0
  31. package/templates/addon-resources/resources/sykehuspartner-theme/index.mdx +105 -0
  32. package/templates/addon-resources/resources/sykehuspartner-theme/layouts/_category_.yml +2 -0
  33. package/templates/addon-resources/resources/sykehuspartner-theme/layouts/content/_category_.yml +2 -0
  34. package/templates/addon-resources/resources/sykehuspartner-theme/layouts/content/center.mdx +33 -0
  35. package/templates/addon-resources/resources/sykehuspartner-theme/layouts/content/default.mdx +59 -0
  36. package/templates/addon-resources/resources/sykehuspartner-theme/layouts/content/full.mdx +49 -0
  37. package/templates/addon-resources/resources/sykehuspartner-theme/layouts/image/_category_.yml +2 -0
  38. package/templates/addon-resources/resources/sykehuspartner-theme/layouts/image/image-left.mdx +37 -0
  39. package/templates/addon-resources/resources/sykehuspartner-theme/layouts/image/image-right.mdx +37 -0
  40. package/templates/addon-resources/resources/sykehuspartner-theme/layouts/image/image.mdx +56 -0
  41. package/templates/addon-resources/resources/sykehuspartner-theme/layouts/multi-column/_category_.yml +2 -0
  42. package/templates/addon-resources/resources/sykehuspartner-theme/layouts/multi-column/three-cols-header.mdx +49 -0
  43. package/templates/addon-resources/resources/sykehuspartner-theme/layouts/multi-column/three-cols.mdx +47 -0
  44. package/templates/addon-resources/resources/sykehuspartner-theme/layouts/multi-column/two-cols-header.mdx +43 -0
  45. package/templates/addon-resources/resources/sykehuspartner-theme/layouts/multi-column/two-cols.mdx +38 -0
  46. package/templates/addon-resources/resources/sykehuspartner-theme/layouts/section/_category_.yml +2 -0
  47. package/templates/addon-resources/resources/sykehuspartner-theme/layouts/section/cover.mdx +43 -0
  48. package/templates/addon-resources/resources/sykehuspartner-theme/layouts/section/end.mdx +33 -0
  49. package/templates/addon-resources/resources/sykehuspartner-theme/layouts/section/intro.mdx +49 -0
  50. package/templates/addon-resources/resources/sykehuspartner-theme/layouts/section/section.mdx +41 -0
  51. package/templates/addon-resources/resources/sykehuspartner-theme/layouts/special/_category_.yml +2 -0
  52. package/templates/addon-resources/resources/sykehuspartner-theme/layouts/special/about-me.mdx +92 -0
  53. package/templates/addon-resources/resources/sykehuspartner-theme/layouts/special/fact.mdx +47 -0
  54. package/templates/addon-resources/resources/sykehuspartner-theme/layouts/special/quote.mdx +27 -0
  55. package/templates/addon-resources/resources/sykehuspartner-theme/layouts/special/statement.mdx +28 -0
  56. package/templates/addon-resources/resources/sykehuspartner-theme/setup/advanced-configuration.mdx +79 -0
  57. package/templates/addon-resources/resources/sykehuspartner-theme/setup/index.mdx +104 -0
  58. package/templates/addon-resources/resources/sykehuspartner-theme/syntax-and-icons.mdx +89 -0
  59. package/templates/addon-slidev/package.json +54 -0
  60. package/templates/addon-slidev/slidev/creating-your-first-slidev.md +301 -0
  61. package/templates/addon-slidev/slidev/slidev-theme-sykehuspartner.md +403 -0
  62. package/templates/page-course/README.md +152 -0
  63. package/templates/page-course/course/index.mdx +7 -0
  64. package/templates/page-course/course/placeholder-advanced-usage.mdx +304 -0
  65. package/templates/page-course/course/placeholder-basic-usage.mdx +128 -0
  66. package/templates/page-course/docusaurus.config.ts +171 -0
  67. package/templates/page-course/example-github-pages.yml +66 -0
  68. package/templates/page-course/gitignore +20 -0
  69. package/templates/page-course/package.json +51 -0
  70. package/templates/page-course/src/css/sp-days-theme.scss +297 -0
  71. package/templates/page-course/src/pages/index.mdx +165 -0
  72. package/templates/page-course/static/.nojekyll +0 -0
  73. package/templates/page-course/static/img/favicon-navbar/github.svg +3 -0
  74. package/templates/page-course/static/img/favicon-navbar/sorost-logo-dark.svg +24 -0
  75. package/templates/page-course/static/img/favicon-navbar/sorost-logo-light.svg +24 -0
  76. package/templates/page-course/static/img/footer/sykehuspartner-dark.svg +37 -0
  77. package/templates/page-course/static/img/footer/sykehuspartner-light.svg +37 -0
  78. package/templates/page-course/static/img/sidebar/docusaurus.svg +17 -0
  79. package/templates/page-course/static/img/sidebar/slidev.svg +22 -0
  80. package/templates/page-course/static/img/sp-days-logo-color-dark.svg +70 -0
  81. package/templates/page-course/static/img/sp-days-logo-color-light.svg +70 -0
  82. package/templates/page-course/static/img/sp-days-logo-filled-invert.svg +11 -0
  83. package/templates/page-course/static/img/sp-days-logo-filled.svg +11 -0
  84. package/templates/page-course/static/img/sp-days-logo-outline.svg +19 -0
  85. package/templates/page-course/static/img/sp-days-plugin-color-dark.svg +57 -0
  86. package/templates/page-course/static/img/sp-days-plugin-color-light.svg +53 -0
  87. package/templates/page-course/tsconfig.json +8 -0
@@ -0,0 +1,51 @@
1
+ {
2
+ "name": "<%= projectName %>",
3
+ "version": "0.0.0",
4
+ "private": true,
5
+ "scripts": {
6
+ "docusaurus": "docusaurus",
7
+ "start": "docusaurus start",
8
+ "build": "docusaurus build",
9
+ "swizzle": "docusaurus swizzle",
10
+ "deploy": "docusaurus deploy",
11
+ "clear": "docusaurus clear",
12
+ "serve": "docusaurus serve",
13
+ "write-translations": "docusaurus write-translations",
14
+ "write-heading-ids": "docusaurus write-heading-ids",
15
+ "typecheck": "tsc"
16
+ },
17
+ "dependencies": {
18
+ "@docusaurus/core": "^3.9.2",
19
+ "@docusaurus/preset-classic": "^3.9.2",
20
+ "@docusaurus/theme-mermaid": "^3.9.2",
21
+ "@mdx-js/react": "^3.0.0",
22
+ "@sp-days-framework/docusaurus-frontpage-collection": "^1.0.0",
23
+ "@sp-days-framework/docusaurus-plugin-interactive-tasks": "^1.0.1",
24
+ "clsx": "^2.0.0",
25
+ "docusaurus-plugin-sass": "^0.2.6",
26
+ "prism-react-renderer": "^2.3.0",
27
+ "react": "^19.0.0",
28
+ "react-dom": "^19.0.0"
29
+ },
30
+ "devDependencies": {
31
+ "@docusaurus/module-type-aliases": "^3.9.2",
32
+ "@docusaurus/tsconfig": "^3.9.2",
33
+ "@docusaurus/types": "^3.9.2",
34
+ "typescript": "~5.6.2"
35
+ },
36
+ "browserslist": {
37
+ "production": [
38
+ ">0.5%",
39
+ "not dead",
40
+ "not op_mini all"
41
+ ],
42
+ "development": [
43
+ "last 3 chrome version",
44
+ "last 3 firefox version",
45
+ "last 5 safari version"
46
+ ]
47
+ },
48
+ "engines": {
49
+ "node": ">=20.0"
50
+ }
51
+ }
@@ -0,0 +1,297 @@
1
+ /**
2
+ * Any CSS included here will be global. The classic template
3
+ * bundles Infima by default. Infima is a CSS framework designed to
4
+ * work well for content-centric websites.
5
+ */
6
+ // Import Sass color module
7
+ @use "sass:color";
8
+
9
+ // Functions to calculate color variations using the modern color.scale approach
10
+ @function lighten-percentage($color, $percentage) {
11
+ @return color.scale($color, $lightness: $percentage * 1%);
12
+ }
13
+
14
+ @function darken-percentage($color, $percentage) {
15
+ @return color.scale($color, $lightness: -$percentage * 1%);
16
+ }
17
+
18
+ // Define base colors for light and dark themes
19
+ // Light theme colors
20
+ $primary-color-light-theme: #1d63ed;
21
+ $success-color-light-theme: #00a400;
22
+ $info-color-light-theme: #54c7ec;
23
+ $warning-color-light-theme: #ffba00;
24
+ $danger-color-light-theme: #fa383e;
25
+ $secondary-color-light-theme: #ebedf0;
26
+
27
+ // Dark theme colors
28
+ $primary-color-dark-theme: #6CACE4;
29
+ $success-color-dark-theme: #88e36b;
30
+ $info-color-dark-theme: #5dccf0;
31
+ $warning-color-dark-theme: #ffc93d;
32
+ $danger-color-dark-theme: #ff6369;
33
+ $secondary-color-dark-theme: #afafaf;
34
+
35
+ // Code syntax highlighting theme
36
+ :root {
37
+ --docusaurus-highlighted-code-line-bg: rgb(143 142 69 / 11%);
38
+ // --ifm-code-font-size: 95%;
39
+ }
40
+
41
+ /* You can override the default Infima variables here. */
42
+ :root {
43
+ // Primary color and its variations
44
+ --ifm-color-primary: #{$primary-color-light-theme};
45
+ --ifm-color-primary-dark: #{darken-percentage($primary-color-light-theme, 5)};
46
+ --ifm-color-primary-darker: #{darken-percentage($primary-color-light-theme, 10)};
47
+ --ifm-color-primary-darkest: #{darken-percentage($primary-color-light-theme, 15)};
48
+ --ifm-color-primary-light: #{lighten-percentage($primary-color-light-theme, 5)};
49
+ --ifm-color-primary-lighter: #{lighten-percentage($primary-color-light-theme, 10)};
50
+ --ifm-color-primary-lightest: #{lighten-percentage($primary-color-light-theme, 30)};
51
+ --ifm-color-primary-contrast-background: #{lighten-percentage($primary-color-light-theme, 95)};
52
+ --ifm-color-primary-contrast-foreground: #{darken-percentage($primary-color-light-theme, 95)};
53
+
54
+ // // Secondary color and its variations
55
+ // --ifm-color-secondary: #{$secondary-color-light-theme};
56
+ // --ifm-color-secondary-dark: #{darken-percentage($secondary-color-light-theme, 5)};
57
+ // --ifm-color-secondary-darker: #{darken-percentage($secondary-color-light-theme, 10)};
58
+ // --ifm-color-secondary-darkest: #{darken-percentage($secondary-color-light-theme, 15)};
59
+ // --ifm-color-secondary-light: #{lighten-percentage($secondary-color-light-theme, 5)};
60
+ // --ifm-color-secondary-lighter: #{lighten-percentage($secondary-color-light-theme, 10)};
61
+ // --ifm-color-secondary-lightest: #{lighten-percentage($secondary-color-light-theme, 15)};
62
+ // --ifm-color-secondary-contrast-background: #{lighten-percentage($secondary-color-light-theme, 95)};
63
+ // --ifm-color-secondary-contrast-foreground: #{darken-percentage($secondary-color-light-theme, 95)};
64
+
65
+ // Success color and its variations
66
+ --ifm-color-success: #{$success-color-light-theme};
67
+ --ifm-color-success-dark: #{darken-percentage($success-color-light-theme, 5)};
68
+ --ifm-color-success-darker: #{darken-percentage($success-color-light-theme, 10)};
69
+ --ifm-color-success-darkest: #{darken-percentage($success-color-light-theme, 15)};
70
+ --ifm-color-success-light: #{lighten-percentage($success-color-light-theme, 10)};
71
+ --ifm-color-success-lighter: #{lighten-percentage($success-color-light-theme, 20)};
72
+ --ifm-color-success-lightest: #{lighten-percentage($success-color-light-theme, 30)};
73
+ --ifm-color-success-contrast-background: #{lighten-percentage($success-color-light-theme, 95)};
74
+ --ifm-color-success-contrast-foreground: #{darken-percentage($success-color-light-theme, 95)};
75
+
76
+ // Info color and its variations
77
+ --ifm-color-info: #{$info-color-light-theme};
78
+ --ifm-color-info-dark: #{darken-percentage($info-color-light-theme, 5)};
79
+ --ifm-color-info-darker: #{darken-percentage($info-color-light-theme, 10)};
80
+ --ifm-color-info-darkest: #{darken-percentage($info-color-light-theme, 15)};
81
+ --ifm-color-info-light: #{lighten-percentage($info-color-light-theme, 5)};
82
+ --ifm-color-info-lighter: #{lighten-percentage($info-color-light-theme, 10)};
83
+ --ifm-color-info-lightest: #{lighten-percentage($info-color-light-theme, 20)};
84
+ --ifm-color-info-contrast-background: #{lighten-percentage($info-color-light-theme, 95)};
85
+ --ifm-color-info-contrast-foreground: #{darken-percentage($info-color-light-theme, 95)};
86
+
87
+ // Warning color and its variations
88
+ --ifm-color-warning: #{$warning-color-light-theme};
89
+ --ifm-color-warning-dark: #{darken-percentage($warning-color-light-theme, 5)};
90
+ --ifm-color-warning-darker: #{darken-percentage($warning-color-light-theme, 10)};
91
+ --ifm-color-warning-darkest: #{darken-percentage($warning-color-light-theme, 15)};
92
+ --ifm-color-warning-light: #{lighten-percentage($warning-color-light-theme, 5)};
93
+ --ifm-color-warning-lighter: #{lighten-percentage($warning-color-light-theme, 10)};
94
+ --ifm-color-warning-lightest: #{lighten-percentage($warning-color-light-theme, 20)};
95
+ --ifm-color-warning-contrast-background: #{lighten-percentage($warning-color-light-theme, 95)};
96
+ --ifm-color-warning-contrast-foreground: #{darken-percentage($warning-color-light-theme, 95)};
97
+
98
+ // Danger color and its variations
99
+ --ifm-color-danger: #{$danger-color-light-theme};
100
+ --ifm-color-danger-dark: #{darken-percentage($danger-color-light-theme, 5)};
101
+ --ifm-color-danger-darker: #{darken-percentage($danger-color-light-theme, 10)};
102
+ --ifm-color-danger-darkest: #{darken-percentage($danger-color-light-theme, 15)};
103
+ --ifm-color-danger-light: #{lighten-percentage($danger-color-light-theme, 5)};
104
+ --ifm-color-danger-lighter: #{lighten-percentage($danger-color-light-theme, 10)};
105
+ --ifm-color-danger-lightest: #{lighten-percentage($danger-color-light-theme, 20)};
106
+ --ifm-color-danger-contrast-background: #{lighten-percentage($danger-color-light-theme, 95)};
107
+ --ifm-color-danger-contrast-foreground: #{darken-percentage($danger-color-light-theme, 95)};
108
+ }
109
+
110
+ /* For readability concerns, you should choose a lighter palette in dark mode. */
111
+ [data-theme='dark'] {
112
+ // Primary color and its variations for dark mode
113
+ --ifm-color-primary: #{$primary-color-dark-theme};
114
+ --ifm-color-primary-dark: #{darken-percentage($primary-color-dark-theme, 10)};
115
+ --ifm-color-primary-darker: #{darken-percentage($primary-color-dark-theme, 15)};
116
+ --ifm-color-primary-darkest: #{darken-percentage($primary-color-dark-theme, 30)};
117
+ --ifm-color-primary-light: #{lighten-percentage($primary-color-dark-theme, 10)};
118
+ --ifm-color-primary-lighter: #{lighten-percentage($primary-color-dark-theme, 15)};
119
+ --ifm-color-primary-lightest: #{lighten-percentage($primary-color-dark-theme, 30)};
120
+ --ifm-color-primary-contrast-background: #{darken-percentage($primary-color-dark-theme, 90)};
121
+ --ifm-color-primary-contrast-foreground: #{lighten-percentage($primary-color-dark-theme, 90)};
122
+
123
+ // Secondary color and its variations
124
+ --ifm-color-secondary: #{$secondary-color-dark-theme};
125
+ --ifm-color-secondary-dark: #{darken-percentage($secondary-color-dark-theme, 5)};
126
+ --ifm-color-secondary-darker: #{darken-percentage($secondary-color-dark-theme, 10)};
127
+ --ifm-color-secondary-darkest: #{darken-percentage($secondary-color-dark-theme, 15)};
128
+ --ifm-color-secondary-light: #{lighten-percentage($secondary-color-dark-theme, 5)};
129
+ --ifm-color-secondary-lighter: #{lighten-percentage($secondary-color-dark-theme, 10)};
130
+ --ifm-color-secondary-lightest: #{lighten-percentage($secondary-color-dark-theme, 15)};
131
+ --ifm-color-secondary-contrast-background: #{darken-percentage($secondary-color-dark-theme, 90)};
132
+ --ifm-color-secondary-contrast-foreground: #{lighten-percentage($secondary-color-dark-theme, 90)};
133
+
134
+ // Success color for dark mode
135
+ --ifm-color-success: #{$success-color-dark-theme};
136
+ --ifm-color-success-dark: #{darken-percentage($success-color-dark-theme, 10)};
137
+ --ifm-color-success-darker: #{darken-percentage($success-color-dark-theme, 15)};
138
+ --ifm-color-success-darkest: #{darken-percentage($success-color-dark-theme, 35)};
139
+ --ifm-color-success-light: #{lighten-percentage($success-color-dark-theme, 10)};
140
+ --ifm-color-success-lighter: #{lighten-percentage($success-color-dark-theme, 15)};
141
+ --ifm-color-success-lightest: #{lighten-percentage($success-color-dark-theme, 30)};
142
+ --ifm-color-success-contrast-background: #{darken-percentage($success-color-dark-theme, 90)};
143
+ --ifm-color-success-contrast-foreground: #{lighten-percentage($success-color-dark-theme, 90)};
144
+
145
+ // Info color and its variations
146
+ --ifm-color-info: #{$info-color-dark-theme};
147
+ --ifm-color-info-dark: #{darken-percentage($info-color-dark-theme, 10)};
148
+ --ifm-color-info-darker: #{darken-percentage($info-color-dark-theme, 15)};
149
+ --ifm-color-info-darkest: #{darken-percentage($info-color-dark-theme, 30)};
150
+ --ifm-color-info-light: #{lighten-percentage($info-color-dark-theme, 10)};
151
+ --ifm-color-info-lighter: #{lighten-percentage($info-color-dark-theme, 15)};
152
+ --ifm-color-info-lightest: #{lighten-percentage($info-color-dark-theme, 30)};
153
+ --ifm-color-info-contrast-background: #{darken-percentage($info-color-dark-theme, 90)};
154
+ --ifm-color-info-contrast-foreground: #{lighten-percentage($info-color-dark-theme, 90)};
155
+
156
+ // Warning color and its variations
157
+ --ifm-color-warning: #{$warning-color-dark-theme};
158
+ --ifm-color-warning-dark: #{darken-percentage($warning-color-dark-theme, 10)};
159
+ --ifm-color-warning-darker: #{darken-percentage($warning-color-dark-theme, 15)};
160
+ --ifm-color-warning-darkest: #{darken-percentage($warning-color-dark-theme, 30)};
161
+ --ifm-color-warning-light: #{lighten-percentage($warning-color-dark-theme, 10)};
162
+ --ifm-color-warning-lighter: #{lighten-percentage($warning-color-dark-theme, 15)};
163
+ --ifm-color-warning-lightest: #{lighten-percentage($warning-color-dark-theme, 30)};
164
+ --ifm-color-warning-contrast-background: #{darken-percentage($warning-color-dark-theme, 90)};
165
+ --ifm-color-warning-contrast-foreground: #{lighten-percentage($warning-color-dark-theme, 90)};
166
+
167
+ // Danger color and its variations
168
+ --ifm-color-danger: #{$danger-color-dark-theme};
169
+ --ifm-color-danger-dark: #{darken-percentage($danger-color-dark-theme, 10)};
170
+ --ifm-color-danger-darker: #{darken-percentage($danger-color-dark-theme, 15)};
171
+ --ifm-color-danger-darkest: #{darken-percentage($danger-color-dark-theme, 30)};
172
+ --ifm-color-danger-light: #{lighten-percentage($danger-color-dark-theme, 10)};
173
+ --ifm-color-danger-lighter: #{lighten-percentage($danger-color-dark-theme, 15)};
174
+ --ifm-color-danger-lightest: #{lighten-percentage($danger-color-dark-theme, 30)};
175
+ --ifm-color-danger-contrast-background: #{darken-percentage($danger-color-dark-theme, 90)};
176
+ --ifm-color-danger-contrast-foreground: #{lighten-percentage($danger-color-dark-theme, 90)};
177
+ }
178
+
179
+ .navbar-github-link::before {
180
+ content: '';
181
+ width: 24px;
182
+ height: 24px;
183
+ display: flex;
184
+ background-color: var(--ifm-navbar-link-color);
185
+ mask-image: url(../../static/img/favicon-navbar/github.svg);
186
+ }
187
+
188
+ // Custom styles for resource landing page
189
+ .resourceLandingPage {
190
+ display: flex;
191
+ align-items: center;
192
+ justify-content: center;
193
+ margin: 0 80px;
194
+ width: min-content;
195
+ }
196
+
197
+ // Styles for preview components
198
+ .preview {
199
+ position: relative;
200
+ margin-top: 2rem;
201
+ // margin-bottom: 2rem;
202
+ display: flex;
203
+ justify-content: center;
204
+
205
+ &::before {
206
+ content: 'Preview';
207
+ position: absolute;
208
+ top: -0.75rem;
209
+ left: 50%;
210
+ transform: translateX(-50%);
211
+ padding: 0 0.5rem;
212
+ background-color: var(--ifm-background-surface-color);
213
+ font-size: 0.875rem;
214
+ font-weight: 500;
215
+ color: var(--ifm-color-emphasis-700);
216
+ z-index: 1;
217
+ }
218
+
219
+ .container {
220
+ border: 1px solid var(--ifm-color-emphasis-300);
221
+ border-radius: 8px;
222
+ // padding-bottom: 1.5rem;
223
+ padding-top: 1.5rem;
224
+ width: fit-content;
225
+ position: relative;
226
+ }
227
+ }
228
+
229
+ [data-theme='dark'] {
230
+ .preview {
231
+ &::before {
232
+ background-color: var(--ifm-background-color);
233
+ }
234
+ }
235
+ }
236
+
237
+ // Sidebar logo styles
238
+ $sidebar-logo-icon-size: 20px;
239
+
240
+ @mixin sidebar-logo-link {
241
+ display: flex;
242
+ align-items: center;
243
+ gap: 8px;
244
+ width: 100%;
245
+ min-width: 0;
246
+
247
+ &::before {
248
+ content: '';
249
+ display: inline-block;
250
+ width: $sidebar-logo-icon-size;
251
+ height: $sidebar-logo-icon-size;
252
+ background-image: var(--sidebar-logo-image, none);
253
+ background-size: contain;
254
+ background-repeat: no-repeat;
255
+ background-position: center;
256
+ flex-shrink: 0;
257
+ }
258
+ }
259
+
260
+ .sidebar-logo,
261
+ [class*='sidebar-logo-'] {
262
+ // Only target the immediate menu link for the matching item, not its children
263
+ > .menu__link,
264
+ > .menu__list-item-collapsible > .menu__link,
265
+ > .menu__list-item-collapsible > a,
266
+ > div > a {
267
+ @include sidebar-logo-link;
268
+ }
269
+ }
270
+
271
+ .sidebar-logo-slidev {
272
+ --sidebar-logo-image: url(../../static/img/sidebar/slidev.svg);
273
+ }
274
+
275
+ .sidebar-logo-docusaurus {
276
+ --sidebar-logo-image: url(../../static/img/sidebar/docusaurus.svg);
277
+ }
278
+
279
+ .sidebar-logo-sp-days {
280
+ --sidebar-logo-image: url(../../static/img/sp-days-logo-color-light.svg);
281
+ }
282
+
283
+ [data-theme='dark'] {
284
+ .sidebar-logo-sp-days {
285
+ --sidebar-logo-image: url(../../static/img/sp-days-logo-color-dark.svg);
286
+ }
287
+ }
288
+
289
+ .sidebar-logo-sp-days-plugin {
290
+ --sidebar-logo-image: url(../../static/img/sp-days-plugin-color-light.svg);
291
+ }
292
+
293
+ [data-theme='dark'] {
294
+ .sidebar-logo-sp-days-plugin {
295
+ --sidebar-logo-image: url(../../static/img/sp-days-plugin-color-dark.svg);
296
+ }
297
+ }
@@ -0,0 +1,165 @@
1
+ ---
2
+ title: Course Home
3
+ description: Learn with our interactive course
4
+ hide_table_of_contents: true
5
+ ---
6
+
7
+ import TaskPlaceholder from '@theme/TaskPlaceholder';
8
+ import Text from '@theme/Task/Text';
9
+ import Hint from '@theme/Task/Hint';
10
+ import Solution from '@theme/Task/Solution';
11
+ import {
12
+ HeroBanner,
13
+ FancyHeader,
14
+ CourseFeature,
15
+ Included,
16
+ NotIncluded,
17
+ IconContainersSection,
18
+ IconContainerBlock,
19
+ GetStarted,
20
+ Explore,
21
+ ExploreItem,
22
+ Columns,
23
+ Left,
24
+ Right,
25
+ Block,
26
+ } from "@sp-days-framework/docusaurus-frontpage-collection";
27
+
28
+ <HeroBanner
29
+ bannerText="Your Course Title Here"
30
+ customSvg={{
31
+ light: "img/sp-days-logo-color-light.svg",
32
+ dark: "img/sp-days-logo-color-dark.svg",
33
+ }}
34
+ />
35
+
36
+ <FancyHeader>What You'll Learn</FancyHeader>
37
+
38
+ <CourseFeature>
39
+ <Included>
40
+ - **First Topic**: Brief description of the first main learning outcome
41
+ - **Second Topic**: Brief description of the second main learning outcome
42
+ - **Third Topic**: Brief description of the third main learning outcome
43
+ </Included>
44
+ <NotIncluded>
45
+ - **Out of Scope Topic 1**: Explain why this isn't covered
46
+ - **Out of Scope Topic 2**: Explain why this isn't covered
47
+ - **Out of Scope Topic 3**: Explain why this isn't covered
48
+ </NotIncluded>
49
+ </CourseFeature>
50
+
51
+ <FancyHeader as="h2">Prerequisites</FancyHeader>
52
+
53
+ <IconContainersSection>
54
+ <IconContainerBlock
55
+ title="Prerequisite 1"
56
+ iconify="mdi:laptop"
57
+ link="/course"
58
+ />
59
+ <IconContainerBlock
60
+ title="Prerequisite 2"
61
+ iconify="mdi:code-tags"
62
+ link="/course"
63
+ />
64
+ <IconContainerBlock
65
+ title="Prerequisite 3"
66
+ iconify="mdi:database"
67
+ link="/course"
68
+ />
69
+ <IconContainerBlock
70
+ title="Prerequisite 4"
71
+ iconify="mdi:cloud"
72
+ link="/course"
73
+ />
74
+ </IconContainersSection>
75
+
76
+ <FancyHeader as="h2">Course Structure</FancyHeader>
77
+
78
+ <Columns leftRatio="40">
79
+ <Left>
80
+ <Block>
81
+ ## Self-Study
82
+
83
+ - **Duration**: X hours
84
+ - **Modules**: Y modules
85
+ - **Hands-on Labs**: Z exercises
86
+ </Block>
87
+ <Block>
88
+ ## With Instructor
89
+
90
+ - **Duration**: X days
91
+ - **Schedule**: Day by day breakdown
92
+ - **Format**: In-person/Virtual/Hybrid
93
+ </Block>
94
+ </Left>
95
+ <Right>
96
+ <TaskPlaceholder title="Sample Task Title">
97
+ <Text>
98
+ Replace this text with your task description.
99
+
100
+ **Task Objective:**
101
+ Explain what the learner should accomplish.
102
+
103
+ **Steps:**
104
+ 1. First step description
105
+ 2. Second step description
106
+ 3. Third step description
107
+
108
+ **Expected Outcome:**
109
+ Describe what success looks like.
110
+ </Text>
111
+ <Hint>
112
+ Provide helpful hints here to guide learners without giving away the solution.
113
+
114
+ - Hint 1: Point them in the right direction
115
+ - Hint 2: Reference relevant documentation or concepts
116
+ - Hint 3: Suggest tools or approaches to try
117
+ </Hint>
118
+ <Solution>
119
+ Provide the complete solution here.
120
+
121
+ ```language
122
+ // Include code examples with proper syntax highlighting
123
+ // Explain each important part
124
+ ```
125
+
126
+ **Explanation:**
127
+ Walk through the solution step by step.
128
+ </Solution>
129
+ </TaskPlaceholder>
130
+ </Right>
131
+ </Columns>
132
+
133
+ <GetStarted buttonText="Get Started" buttonLink="/course">
134
+ ## Ready to Begin?
135
+
136
+ Start your learning journey today with our comprehensive course materials.
137
+
138
+ <Explore>
139
+ <ExploreItem
140
+ title="Interactive Tasks"
141
+ iconify="ci:window-check"
142
+ link="/course"
143
+ >
144
+ Access all course modules and lessons
145
+ </ExploreItem>
146
+ // CONDITIONAL: addon-resources (START)
147
+ <ExploreItem
148
+ title="Resources"
149
+ iconify="mdi:book-open-variant"
150
+ link="/resources"
151
+ >
152
+ Additional learning materials and references
153
+ </ExploreItem>
154
+ // CONDITIONAL: addon-resources (END)
155
+ // CONDITIONAL: addon-slidev (START)
156
+ <ExploreItem
157
+ title="Presentations"
158
+ iconify="mdi:television-play"
159
+ link="/slidev"
160
+ >
161
+ View presentation slides and notes
162
+ </ExploreItem>
163
+ // CONDITIONAL: addon-slidev (END)
164
+ </Explore>
165
+ </GetStarted>
File without changes
@@ -0,0 +1,3 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
2
+ <path fill="currentColor" fill-rule="evenodd" d="M12.026 2c-5.509 0-9.974 4.465-9.974 9.974c0 4.406 2.857 8.145 6.821 9.465c.499.09.679-.217.679-.481c0-.237-.008-.865-.011-1.696c-2.775.602-3.361-1.338-3.361-1.338c-.452-1.152-1.107-1.459-1.107-1.459c-.905-.619.069-.605.069-.605c1.002.07 1.527 1.028 1.527 1.028c.89 1.524 2.336 1.084 2.902.829c.091-.645.351-1.085.635-1.334c-2.214-.251-4.542-1.107-4.542-4.93c0-1.087.389-1.979 1.024-2.675c-.101-.253-.446-1.268.099-2.64c0 0 .837-.269 2.742 1.021a9.6 9.6 0 0 1 2.496-.336a9.6 9.6 0 0 1 2.496.336c1.906-1.291 2.742-1.021 2.742-1.021c.545 1.372.203 2.387.099 2.64c.64.696 1.024 1.587 1.024 2.675c0 3.833-2.33 4.675-4.552 4.922c.355.308.675.916.675 1.846c0 1.334-.012 2.41-.012 2.737c0 .267.178.577.687.479C19.146 20.115 22 16.379 22 11.974C22 6.465 17.535 2 12.026 2" clip-rule="evenodd" />
3
+ </svg>
@@ -0,0 +1,24 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 27.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 73.5 73.5" style="enable-background:new 0 0 73.5 73.5;" xml:space="preserve">
5
+ <style type="text/css">
6
+ .st0{fill:#6AB1E2;}
7
+ .st1{fill:#FFFFFF;}
8
+ </style>
9
+ <g transform="translate(34.37 48.337)">
10
+ <path class="st0" d="M11.5-39.3c0,5-4.1,9.1-9.1,9.1s-9.1-4.1-9.1-9.1c0-5,4.1-9.1,9.1-9.1S11.5-44.3,11.5-39.3"/>
11
+ </g>
12
+ <g transform="translate(34.37 27.588)">
13
+ <path class="st0" d="M11.5,9.1c0,5-4.1,9.1-9.1,9.1s-9.1-4.1-9.1-9.1c0-5,4.1-9.1,9.1-9.1S11.5,4.1,11.5,9.1"/>
14
+ </g>
15
+ <g transform="translate(13.602 27.588)">
16
+ <path class="st0" d="M4.5,9.1c0,5-4.1,9.1-9.1,9.1c-5,0-9.1-4.1-9.1-9.1c0-5,4.1-9.1,9.1-9.1C0.5,0.1,4.5,4.1,4.5,9.1"/>
17
+ </g>
18
+ <g transform="translate(55.147 27.588)">
19
+ <path class="st1" d="M18.4,9.1c0,5-4.1,9.1-9.1,9.1s-9.1-4.1-9.1-9.1c0-5,4.1-9.1,9.1-9.1S18.4,4.1,18.4,9.1"/>
20
+ </g>
21
+ <g transform="translate(34.37 6.8015)">
22
+ <path class="st1" d="M11.5,57.6c0,5-4.1,9.1-9.1,9.1s-9.1-4.1-9.1-9.1c0-5,4.1-9.1,9.1-9.1S11.5,52.6,11.5,57.6"/>
23
+ </g>
24
+ </svg>
@@ -0,0 +1,24 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 27.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 73.5 73.5" style="enable-background:new 0 0 73.5 73.5;" xml:space="preserve">
5
+ <style type="text/css">
6
+ .st0{fill:#6CACE4;}
7
+ .st1{fill:#003087;}
8
+ </style>
9
+ <g transform="translate(34.37 48.337)">
10
+ <path class="st0" d="M11.5-39.3c0,5-4.1,9.1-9.1,9.1s-9.1-4.1-9.1-9.1c0-5,4.1-9.1,9.1-9.1S11.5-44.3,11.5-39.3"/>
11
+ </g>
12
+ <g transform="translate(34.37 27.588)">
13
+ <path class="st0" d="M11.5,9.1c0,5-4.1,9.1-9.1,9.1s-9.1-4.1-9.1-9.1c0-5,4.1-9.1,9.1-9.1S11.5,4.1,11.5,9.1"/>
14
+ </g>
15
+ <g transform="translate(13.602 27.588)">
16
+ <path class="st0" d="M4.5,9.1c0,5-4.1,9.1-9.1,9.1c-5,0-9.1-4.1-9.1-9.1c0-5,4.1-9.1,9.1-9.1C0.5,0.1,4.5,4.1,4.5,9.1"/>
17
+ </g>
18
+ <g transform="translate(55.147 27.588)">
19
+ <path class="st1" d="M18.4,9.1c0,5-4.1,9.1-9.1,9.1s-9.1-4.1-9.1-9.1c0-5,4.1-9.1,9.1-9.1S18.4,4.1,18.4,9.1"/>
20
+ </g>
21
+ <g transform="translate(34.37 6.8015)">
22
+ <path class="st1" d="M11.5,57.6c0,5-4.1,9.1-9.1,9.1s-9.1-4.1-9.1-9.1c0-5,4.1-9.1,9.1-9.1S11.5,52.6,11.5,57.6"/>
23
+ </g>
24
+ </svg>
@@ -0,0 +1,37 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 314.2 58">
3
+ <defs>
4
+ <style>
5
+ .cls-1 {
6
+ fill: #ffffffff;
7
+ }
8
+
9
+ .cls-1, .cls-2 {
10
+ stroke-width: 0px;
11
+ }
12
+
13
+ .cls-2 {
14
+ fill: #6cace4;
15
+ }
16
+ </style>
17
+ </defs>
18
+ <path class="cls-2" d="M36.2,7.2c0,4-3.2,7.2-7.2,7.2s-7.2-3.2-7.2-7.2S25,0,29,0s7.2,3.2,7.2,7.2Z"/>
19
+ <path class="cls-2" d="M36.2,29c0,3.9-3.2,7.2-7.2,7.2s-7.2-3.2-7.2-7.2,3.2-7.2,7.2-7.2,7.2,3.2,7.2,7.2Z"/>
20
+ <path class="cls-2" d="M14.3,29c0,3.9-3.2,7.2-7.2,7.2s-7.2-3.2-7.2-7.2,3.2-7.2,7.2-7.2,7.2,3.2,7.2,7.2Z"/>
21
+ <path class="cls-1" d="M58,29c0,3.9-3.2,7.2-7.2,7.2s-7.2-3.2-7.2-7.2,3.2-7.2,7.2-7.2,7.2,3.2,7.2,7.2Z"/>
22
+ <path class="cls-1" d="M36.2,50.8c0,3.9-3.2,7.2-7.2,7.2s-7.2-3.2-7.2-7.2,3.2-7.2,7.2-7.2,7.2,3.2,7.2,7.2Z"/>
23
+ <path class="cls-1" d="M83.7,21.4c-2.1-.9-3.7-1.4-5-1.4s-2.8.7-2.8,1.8.5,1.3,1.8,2.1c3,1.6,4.9,2.8,5.8,3.7.8.8,1.3,2.1,1.3,3.5,0,3.5-2.5,5.5-6.8,5.5s-1.2,0-1.7-.1c-1.4-.2-2-.4-4-1.3l-1.3-.6,1.6-3.4c1.4.8,2,1.1,2.8,1.3,1,.4,2,.6,2.8.6,1.7,0,2.8-.8,2.8-1.9s-.4-1.4-1.7-2.1l-3-1.7c-3.4-2-4.5-3.3-4.5-5.4s.3-2,.8-2.7c.3-.5.8-1,1.4-1.4,1.4-1,2.6-1.3,4.9-1.3s2.4.1,3.6.5c.9.3,1.5.5,2.8,1.1l-1.5,3.3Z"/>
24
+ <path class="cls-1" d="M95.7,27.8v8.3h-3.7v-8.3l-5.9-11.1h4l3.9,7.6,4.1-7.6h4l-6.5,11.1Z"/>
25
+ <path class="cls-1" d="M114.8,36.1l-6.5-9.2v9.2h-3.7v-19.4h3.7v9l6.1-9h4.3l-6.7,9.4,7,9.9h-4.2Z"/>
26
+ <path class="cls-1" d="M121.6,36.1v-19.4h11.8v3.1h-8.1v4.8h6.6v3.1h-6.6v5.2h8.5v3.1h-12.2Z"/>
27
+ <path class="cls-1" d="M151,36.1v-8.3h-9.9v8.3h-3.7v-19.4h3.7v7.7h9.9v-7.7h3.7v19.4h-3.7Z"/>
28
+ <path class="cls-1" d="M173.1,35.1c-1.4,1-3.1,1.4-5.5,1.4s-4-.4-5.5-1.4c-2-1.4-2.6-3-2.6-6.5v-11.8h3.7v12c0,2.9,1.5,4.3,4.6,4.3s4.3-1.5,4.3-4.3v-12h3.7v11.8c0,3.6-.6,5.1-2.7,6.5Z"/>
29
+ <path class="cls-1" d="M191.3,21.4c-2.1-.9-3.7-1.4-5-1.4s-2.8.7-2.8,1.8.5,1.3,1.8,2.1c3,1.6,4.9,2.8,5.8,3.7.8.8,1.3,2.1,1.3,3.5,0,3.5-2.5,5.5-6.8,5.5s-1.2,0-1.7-.1c-1.4-.2-2-.4-4-1.3l-1.3-.6,1.6-3.4c1.4.8,2,1.1,2.8,1.3,1,.4,2,.6,2.8.6,1.7,0,2.8-.8,2.8-1.9s-.4-1.4-1.7-2.1l-3-1.7c-3.4-2-4.5-3.3-4.5-5.4s.3-2,.8-2.7c.3-.5.8-1,1.4-1.4,1.4-1,2.6-1.3,4.9-1.3s2.4.1,3.6.5c.9.3,1.5.5,2.8,1.1l-1.5,3.3Z"/>
30
+ <path class="cls-1" d="M202.5,19.9h-2.6v6.5h.9c.4,0,.7,0,.8,0,2.9,0,4.1-1.1,4.1-3.4s-1-3.1-3.3-3.1ZM207.4,27.9c-1.4,1.2-3.1,1.7-5.7,1.7s-1.1,0-1.8,0v6.6h-3.7v-19.4h6.6c2.5,0,3.9.4,5.1,1.6,1.1,1.1,1.6,2.6,1.6,4.3s-.8,4-2.2,5.2Z"/>
31
+ <path class="cls-1" d="M218.3,21.2l-2.2,7h4.5l-2.3-7ZM223.1,36.1l-1.5-4.8h-6.5l-1.6,4.8h-3.9l7-19.4h3.3l7,19.4h-3.9Z"/>
32
+ <path class="cls-1" d="M235.8,19.9h-2.4v5.3h2.4c2.3,0,3.4-.8,3.4-2.8s-1-2.6-3.4-2.6ZM239.7,36.1l-4.4-7.7h-1.8v7.7h-3.7v-19.4h6.5c2.8,0,4.1.4,5.3,1.4,1.1,1,1.6,2.4,1.6,4.2s-.4,2.7-1.1,3.6c-.7.9-1.4,1.3-3,1.8l4.8,8.3h-4Z"/>
33
+ <path class="cls-1" d="M253.3,19.9v16.2h-3.7v-16.2h-5.8v-3.1h15.3v3.1h-5.8Z"/>
34
+ <path class="cls-1" d="M275,36.3l-8.3-12.5-.6-1.2c-.1-.2-.2-.4-.3-.7v14.2h-3.5v-19.4h4.3l7.8,12.3c.6.9.8,1.5,1,2.1v-14.4h3.5v19.5h-3.9Z"/>
35
+ <path class="cls-1" d="M284.3,36.1v-19.4h11.8v3.1h-8.1v4.8h6.6v3.1h-6.6v5.2h8.5v3.1h-12.2Z"/>
36
+ <path class="cls-1" d="M306.2,19.9h-2.4v5.3h2.4c2.3,0,3.4-.8,3.4-2.8s-1-2.6-3.4-2.6ZM310.1,36.1l-4.4-7.7h-1.8v7.7h-3.7v-19.4h6.5c2.8,0,4.1.4,5.3,1.4,1.1,1,1.6,2.4,1.6,4.2s-.4,2.7-1.1,3.6c-.7.9-1.4,1.3-3,1.8l4.8,8.3h-4Z"/>
37
+ </svg>
@@ -0,0 +1,37 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 314.2 58">
3
+ <defs>
4
+ <style>
5
+ .cls-1 {
6
+ fill: #003087;
7
+ }
8
+
9
+ .cls-1, .cls-2 {
10
+ stroke-width: 0px;
11
+ }
12
+
13
+ .cls-2 {
14
+ fill: #6cace4;
15
+ }
16
+ </style>
17
+ </defs>
18
+ <path class="cls-2" d="M36.2,7.2c0,4-3.2,7.2-7.2,7.2s-7.2-3.2-7.2-7.2S25,0,29,0s7.2,3.2,7.2,7.2Z"/>
19
+ <path class="cls-2" d="M36.2,29c0,3.9-3.2,7.2-7.2,7.2s-7.2-3.2-7.2-7.2,3.2-7.2,7.2-7.2,7.2,3.2,7.2,7.2Z"/>
20
+ <path class="cls-2" d="M14.3,29c0,3.9-3.2,7.2-7.2,7.2s-7.2-3.2-7.2-7.2,3.2-7.2,7.2-7.2,7.2,3.2,7.2,7.2Z"/>
21
+ <path class="cls-1" d="M58,29c0,3.9-3.2,7.2-7.2,7.2s-7.2-3.2-7.2-7.2,3.2-7.2,7.2-7.2,7.2,3.2,7.2,7.2Z"/>
22
+ <path class="cls-1" d="M36.2,50.8c0,3.9-3.2,7.2-7.2,7.2s-7.2-3.2-7.2-7.2,3.2-7.2,7.2-7.2,7.2,3.2,7.2,7.2Z"/>
23
+ <path class="cls-1" d="M83.7,21.4c-2.1-.9-3.7-1.4-5-1.4s-2.8.7-2.8,1.8.5,1.3,1.8,2.1c3,1.6,4.9,2.8,5.8,3.7.8.8,1.3,2.1,1.3,3.5,0,3.5-2.5,5.5-6.8,5.5s-1.2,0-1.7-.1c-1.4-.2-2-.4-4-1.3l-1.3-.6,1.6-3.4c1.4.8,2,1.1,2.8,1.3,1,.4,2,.6,2.8.6,1.7,0,2.8-.8,2.8-1.9s-.4-1.4-1.7-2.1l-3-1.7c-3.4-2-4.5-3.3-4.5-5.4s.3-2,.8-2.7c.3-.5.8-1,1.4-1.4,1.4-1,2.6-1.3,4.9-1.3s2.4.1,3.6.5c.9.3,1.5.5,2.8,1.1l-1.5,3.3Z"/>
24
+ <path class="cls-1" d="M95.7,27.8v8.3h-3.7v-8.3l-5.9-11.1h4l3.9,7.6,4.1-7.6h4l-6.5,11.1Z"/>
25
+ <path class="cls-1" d="M114.8,36.1l-6.5-9.2v9.2h-3.7v-19.4h3.7v9l6.1-9h4.3l-6.7,9.4,7,9.9h-4.2Z"/>
26
+ <path class="cls-1" d="M121.6,36.1v-19.4h11.8v3.1h-8.1v4.8h6.6v3.1h-6.6v5.2h8.5v3.1h-12.2Z"/>
27
+ <path class="cls-1" d="M151,36.1v-8.3h-9.9v8.3h-3.7v-19.4h3.7v7.7h9.9v-7.7h3.7v19.4h-3.7Z"/>
28
+ <path class="cls-1" d="M173.1,35.1c-1.4,1-3.1,1.4-5.5,1.4s-4-.4-5.5-1.4c-2-1.4-2.6-3-2.6-6.5v-11.8h3.7v12c0,2.9,1.5,4.3,4.6,4.3s4.3-1.5,4.3-4.3v-12h3.7v11.8c0,3.6-.6,5.1-2.7,6.5Z"/>
29
+ <path class="cls-1" d="M191.3,21.4c-2.1-.9-3.7-1.4-5-1.4s-2.8.7-2.8,1.8.5,1.3,1.8,2.1c3,1.6,4.9,2.8,5.8,3.7.8.8,1.3,2.1,1.3,3.5,0,3.5-2.5,5.5-6.8,5.5s-1.2,0-1.7-.1c-1.4-.2-2-.4-4-1.3l-1.3-.6,1.6-3.4c1.4.8,2,1.1,2.8,1.3,1,.4,2,.6,2.8.6,1.7,0,2.8-.8,2.8-1.9s-.4-1.4-1.7-2.1l-3-1.7c-3.4-2-4.5-3.3-4.5-5.4s.3-2,.8-2.7c.3-.5.8-1,1.4-1.4,1.4-1,2.6-1.3,4.9-1.3s2.4.1,3.6.5c.9.3,1.5.5,2.8,1.1l-1.5,3.3Z"/>
30
+ <path class="cls-1" d="M202.5,19.9h-2.6v6.5h.9c.4,0,.7,0,.8,0,2.9,0,4.1-1.1,4.1-3.4s-1-3.1-3.3-3.1ZM207.4,27.9c-1.4,1.2-3.1,1.7-5.7,1.7s-1.1,0-1.8,0v6.6h-3.7v-19.4h6.6c2.5,0,3.9.4,5.1,1.6,1.1,1.1,1.6,2.6,1.6,4.3s-.8,4-2.2,5.2Z"/>
31
+ <path class="cls-1" d="M218.3,21.2l-2.2,7h4.5l-2.3-7ZM223.1,36.1l-1.5-4.8h-6.5l-1.6,4.8h-3.9l7-19.4h3.3l7,19.4h-3.9Z"/>
32
+ <path class="cls-1" d="M235.8,19.9h-2.4v5.3h2.4c2.3,0,3.4-.8,3.4-2.8s-1-2.6-3.4-2.6ZM239.7,36.1l-4.4-7.7h-1.8v7.7h-3.7v-19.4h6.5c2.8,0,4.1.4,5.3,1.4,1.1,1,1.6,2.4,1.6,4.2s-.4,2.7-1.1,3.6c-.7.9-1.4,1.3-3,1.8l4.8,8.3h-4Z"/>
33
+ <path class="cls-1" d="M253.3,19.9v16.2h-3.7v-16.2h-5.8v-3.1h15.3v3.1h-5.8Z"/>
34
+ <path class="cls-1" d="M275,36.3l-8.3-12.5-.6-1.2c-.1-.2-.2-.4-.3-.7v14.2h-3.5v-19.4h4.3l7.8,12.3c.6.9.8,1.5,1,2.1v-14.4h3.5v19.5h-3.9Z"/>
35
+ <path class="cls-1" d="M284.3,36.1v-19.4h11.8v3.1h-8.1v4.8h6.6v3.1h-6.6v5.2h8.5v3.1h-12.2Z"/>
36
+ <path class="cls-1" d="M306.2,19.9h-2.4v5.3h2.4c2.3,0,3.4-.8,3.4-2.8s-1-2.6-3.4-2.6ZM310.1,36.1l-4.4-7.7h-1.8v7.7h-3.7v-19.4h6.5c2.8,0,4.1.4,5.3,1.4,1.1,1,1.6,2.4,1.6,4.2s-.4,2.7-1.1,3.6c-.7.9-1.4,1.3-3,1.8l4.8,8.3h-4Z"/>
37
+ </svg>