mp-design-system 1.2.27 → 1.2.30

Sign up to get free protection for your applications and to get access to all the features.
Files changed (57) hide show
  1. package/dist/build/scss/library.css +1 -1
  2. package/dist/build/scss/library.css.map +1 -1
  3. package/dist/build/scss/main.css +1 -1
  4. package/dist/build/scss/main.css.map +1 -1
  5. package/package.json +2 -2
  6. package/src/_includes/components/button/button.scss +1 -1
  7. package/src/_includes/components/card/existing-customer-card.config.js +51 -0
  8. package/src/_includes/components/card/existing-customer-card.njk +40 -0
  9. package/src/_includes/components/card/existing-customer-card.scss +100 -0
  10. package/src/_includes/components/card/industry-card.config.js +26 -3
  11. package/src/_includes/components/card/industry-card.njk +32 -6
  12. package/src/_includes/components/card/industry-card.scss +76 -6
  13. package/src/_includes/components/card/macro.njk +14 -2
  14. package/src/_includes/components/card/measurement-type-card.config.js +35 -0
  15. package/src/_includes/components/card/measurement-type-card.njk +35 -0
  16. package/src/_includes/components/card/measurement-type-card.scss +56 -0
  17. package/src/_includes/components/card/{product-comparison-card.config.js → product-card.config.js} +28 -27
  18. package/src/_includes/components/card/product-card.njk +50 -0
  19. package/src/_includes/components/card/product-card.scss +88 -0
  20. package/src/_includes/components/card/search-result-card.config.js +2 -2
  21. package/src/_includes/components/card/search-result-card.njk +27 -18
  22. package/src/_includes/components/card/search-result-card.scss +5 -5
  23. package/src/_includes/components/card/technology-card.config.js +35 -0
  24. package/src/_includes/components/card/technology-card.njk +35 -0
  25. package/src/_includes/components/card/technology-card.scss +56 -0
  26. package/src/_includes/components/component/preview-fixed-width.njk +5 -0
  27. package/src/_includes/components/eyebrow/eyebrow.config.js +14 -0
  28. package/src/_includes/components/eyebrow/eyebrow.scss +10 -0
  29. package/src/_includes/components/signpost/signpost.config.js +14 -1
  30. package/src/_includes/components/signpost/signpost.njk +7 -4
  31. package/src/_includes/components/signpost/signpost.scss +23 -0
  32. package/src/_includes/components/tabs/tabs.scss +4 -0
  33. package/src/_includes/components/twi/twi.scss +4 -0
  34. package/src/_includes/layout.njk +0 -2
  35. package/src/_includes/navigation/corporate.njk +0 -3
  36. package/src/assets/scss/components/index.scss +4 -1
  37. package/src/assets/scss/components/product-finder.scss +1 -1
  38. package/src/assets/scss/tools/cutoff.scss +5 -1
  39. package/src/assets/scss/tools/index.scss +11 -7
  40. package/src/assets/scss/utilities/space.scss +6 -0
  41. package/src/index.njk +1 -1
  42. package/src/prototype/events-hub.njk +463 -0
  43. package/src/prototype/index.njk +251 -182
  44. package/src/prototype/range.njk +5 -5
  45. package/src/prototype/sections.njk +6 -1
  46. package/src/static/svg/icon-globe-alt.svg +4 -0
  47. package/src/static/svg/icon-live-webinars.svg +6 -0
  48. package/src/static/svg/icon-recorded-webinars.svg +4 -0
  49. package/src/static/svg/icon-user-trainings.svg +5 -0
  50. package/src/_includes/components/card/product-comparison-card.njk +0 -37
  51. package/src/_includes/components/card/product-comparison-card.scss +0 -79
  52. /package/src/assets/fonts/{inter-bold.woff → Inter-Bold.woff} +0 -0
  53. /package/src/assets/fonts/{inter-bold.woff2 → Inter-Bold.woff2} +0 -0
  54. /package/src/assets/fonts/{inter-regular.woff → Inter-Regular.woff} +0 -0
  55. /package/src/assets/fonts/{inter-regular.woff2 → Inter-Regular.woff2} +0 -0
  56. /package/src/assets/fonts/{inter-semibold.woff → Inter-SemiBold.woff} +0 -0
  57. /package/src/assets/fonts/{inter-semibold.woff2 → Inter-SemiBold.woff2} +0 -0
@@ -8,6 +8,9 @@ tags: prototype
8
8
  {% from "components/signpost/macro.njk" import signpost %}
9
9
  {% from "components/button/macro.njk" import button %}
10
10
  {% from "components/card/macro.njk" import industryCard %}
11
+ {% from "components/card/macro.njk" import productCard %}
12
+ {% from "components/card/macro.njk" import technologyCard %}
13
+ {% from "components/card/macro.njk" import measurementTypeCard %}
11
14
  {% from "components/campaign/macro.njk" import campaign %}
12
15
  {% from "components/card/macro.njk" import card %}
13
16
  {% from "components/option-list/macro.njk" import optionList %}
@@ -48,253 +51,319 @@ tags: prototype
48
51
  alt: ''
49
52
  }
50
53
  }) }}
54
+ </section>
51
55
 
52
- <div class="u-wrap u-flow--l">
53
- <header class="u-flow--l">
54
- <h2 class="c-h c-h--step-5">Groundbreaking solutions for every industry</h2>
55
- <div class="u-split u-split--bottom">
56
- {{ prose({
57
- content: ' <p>Find out more about how our scientific instruments help users better understand and shape everything from proteins, metals and polymers and to the soil and air around.</p>'
58
- }) }}
59
- {{ twi({ link: '', classes: 'u-link', label: 'View all industries', icon: 'arrow-right' }) }}
60
- </div>
61
- </header>
62
-
63
- <div class="o-grid o-grid--layout o-grid--4/8">
64
- <aside class="u-flow--m u-pad-m u-bg-blue-step-2">
65
- <h3 class="c-h c-h--upper u-grey">Explore our products…</h3>
66
- <ul class="u-flow--m">
67
- <li class="u-flow--xs">
68
- {{ optionList({
69
- title: 'By range',
70
- viewAllLink: '/prototype/products/#product-ranges',
71
- links: [
72
- { link: '/prototype/range', label: 'Mastersizer' },
73
- { link: '/prototype/range', label: 'Zetasizer' },
74
- { link: '/prototype/range', label: 'Aeris' },
75
- { link: '/prototype/range', label: 'Epsilon' }
76
- ]
77
- }) }}
78
- </li>
79
- <li class="u-flow--xs">
80
- {{ optionList({
81
- title: 'By category',
82
- viewAllLink: '/prototype/products/#product-categories',
83
- links: [
84
- { link: '', label: 'Particle size analyzers' },
85
- { link: '', label: 'X-ray diffractometers' },
86
- { link: '', label: 'X-ray fluorescence spectrometers' }
87
- ]
88
- }) }}
89
- <li class="u-flow--xs">
90
- {{ optionList({
91
- title: 'By technology',
92
- viewAllLink: '',
93
- links: [
94
- { link: '', label: 'Light scattering' },
95
- { link: '', label: 'X-ray analysis' },
96
- { link: '', label: 'Nanoparticle tracking analysis' }
97
- ]
98
- }) }}
99
- </li>
100
- <li class="u-flow--xs">
101
- {{ optionList({
102
- title: 'Contract research services',
103
- viewAllLink: '',
104
- links: [
105
- { link: '', label: 'Pharmaceutical services' },
106
- { link: '', label: 'Agrochemical services' }
107
- ]
108
- }) }}
109
- </li>
110
- </ul>
111
- </aside>
56
+ <section class="mp c-slat c-slat--padded c-slat--dots u-bg-blue-step-3 u-margin-top-l">
57
+ <div class="u-wrap u-flow--s-l">
58
+ <div class="u-wrap--content o-prose u-flow--prose u-flow--l">
59
+ <h2 class="c-h c-h--step-3">Groundbreaking solutions for every industry</h2>
60
+ {{ prose({
61
+ content: ' <p>Find out more about how our scientific instruments help users better understand and shape everything from proteins, metals and polymers to the soil and air around us.</p>'
62
+ }) }}
63
+ </div>
64
+ <div class="o-grid o-grid--of-four o-grid--swipeable">
65
+ {{ industryCard({
66
+ title: 'Mining and minerals',
67
+ link: '#',
68
+ description: 'Explore the world of Iron, Base metals, Bauxite, Clay, Coal, Industrial Minerals and Precious Metals in 3D.',
69
+ image: {
70
+ src: '/static/img/sector-1.jpg',
71
+ alt: ''
72
+ },
73
+ footer: {
74
+ button: {
75
+ label: 'View industry'
76
+ }
77
+ }
78
+ }) }}
79
+ {{ industryCard({
80
+ title: 'Pharmaceuticals',
81
+ link: '#',
82
+ description: 'We understand the role our technologies play in providing the physicochemical insight to speed product development.',
83
+ image: {
84
+ src: '/static/img/sector-2.jpg',
85
+ alt: ''
86
+ },
87
+ footer: {
88
+ button: {
89
+ label: 'View industry'
90
+ }
91
+ }
92
+ }) }}
93
+ {{ industryCard({
94
+ title: 'Metal analysis',
95
+ link: '#',
96
+ description: 'We help you to meet demand, become more sustainable, and to make processes easier, cleaner and safer.',
97
+ image: {
98
+ src: '/static/img/sector-3.jpg',
99
+ alt: ''
100
+ },
101
+ footer: {
102
+ button: {
103
+ label: 'View industry'
104
+ }
105
+ }
106
+ }) }}
107
+ {{ industryCard({
108
+ title: 'Battery and energy',
109
+ link: '#',
110
+ description: 'Battery and renewable energy storage: empower your research and production with the best analytical solutions.',
111
+ image: {
112
+ src: '/static/img/sector-4.jpg',
113
+ alt: ''
114
+ },
115
+ footer: {
116
+ button: {
117
+ label: 'View industry'
118
+ }
119
+ }
120
+ }) }}
121
+ </div>
122
+ <div class="u-margin-top-l">
123
+ {{ button({
124
+ link: '#',
125
+ label: 'View all industries',
126
+ classes: 'c-button--inline'
127
+ }) }}
128
+ </div>
129
+ </div>
130
+ </section>
112
131
 
132
+ <section class="mp c-slat c-slat--padded">
133
+ <div class="u-wrap">
134
+ <div class="u-wrap--content o-prose u-flow--prose u-flow--l">
135
+ <h2 class="c-h c-h--step-3">Browse our range of award winning technologies</h2>
136
+ </div>
137
+ <div class="u-wrap">
113
138
  <div class="mp c-tabs c-tabs--anchor">
114
- <nav class="c-tabs__controls u-scroll-shadows--h">
139
+ <nav class="c-tabs__controls">
115
140
  <ul class="c-tabs__controls-list">
116
- <li><a class="c-tabs__control " href="#tab-industry-1">Primary materials</a></li>
117
- <li><a class="c-tabs__control" href="#tab-industry-2">Pharmaceuticals and food</a></li>
118
- <li><a class="c-tabs__control c-tabs__control--active" href="#tab-industry-3">Advanced materials</a></li>
141
+ <li><a class="c-tabs__control c-tabs__control--active" href="#tab-product-1" role="tab">Range</a></li>
142
+ <li><a class="c-tabs__control" href="#tab-product-2" role="tab">Technology</a></li>
143
+ <li><a class="c-tabs__control" href="#tab-product-3" role="tab">Measurement type</a></li>
119
144
  </ul>
120
145
  </nav>
121
-
122
146
  <div class="c-tabs__content">
123
- <div id="tab-industry-1" class="c-tab c-tab--active">
147
+ <div id="tab-product-1" class="c-tab c-tab--active">
124
148
  <div class="o-grid o-grid--of-four o-grid--swipeable">
125
- {{ industryCard({
126
- title: 'Building materials',
127
- link: '',
149
+ {{ productCard({
150
+ title: 'Zetasizer Advance range',
151
+ description: 'Zetasizer Advance is the successor to the highly successful and market-leading Zetasizer Nano.',
128
152
  image: {
129
- src: '/static/img/sector-1.jpg',
130
- alt: ''
131
- }
132
- }) }}
133
- {{ industryCard({
134
- title: 'Metals',
135
- link: '',
136
- image: {
137
- src: '/static/img/sector-2.jpg',
138
- alt: ''
139
- }
140
- }) }}
141
- {{ industryCard({
142
- title: 'Mining and minerals',
143
- link: '',
144
- image: {
145
- src: '/static/img/sector-3.jpg',
146
- alt: ''
153
+ src: '/static/img/products-1.jpg',
154
+ alt: 'Zetasizer Advance range'
155
+ },
156
+ footer: {
157
+ buttons: [
158
+ {
159
+ link: '#',
160
+ label: 'View range',
161
+ classes: 'c-button--small'
162
+ },
163
+ {
164
+ link: '#',
165
+ label: 'Request a quote',
166
+ classes: 'c-button--small'
167
+ }
168
+ ]
147
169
  }
148
170
  }) }}
149
- {{ industryCard({
150
- title: 'Oils and petrochemicals',
151
- link: '',
171
+ {{ productCard({
172
+ title: 'Mastersizer range',
173
+ description: 'From assessing product uniformity and solubility, through to optimising packing density.',
152
174
  image: {
153
- src: '/static/img/sector-4.jpg',
154
- alt: ''
175
+ src: '/static/img/products-2.jpg',
176
+ alt: 'Zetasizer Advance range'
177
+ },
178
+ footer: {
179
+ buttons: [
180
+ {
181
+ link: '#',
182
+ label: 'View range',
183
+ classes: 'c-button--small'
184
+ },
185
+ {
186
+ link: '#',
187
+ label: 'Request a quote',
188
+ classes: 'c-button--small'
189
+ }
190
+ ]
155
191
  }
156
192
  }) }}
157
- {{ industryCard({
158
- title: 'Polymers, plastics, fibers and elastomers',
159
- link: '',
193
+ {{ productCard({
194
+ title: 'NanoSight range',
195
+ description: 'The NanoSight range utilizes NTA to characterize nanoparticles from 10nm - 1000nm* in solution.',
160
196
  image: {
161
- src: '/static/img/sector-5.jpg',
162
- alt: ''
197
+ src: '/static/img/products-3.jpg',
198
+ alt: 'Zetasizer Advance range'
199
+ },
200
+ footer: {
201
+ buttons: [
202
+ {
203
+ link: '#',
204
+ label: 'View range',
205
+ classes: 'c-button--small'
206
+ },
207
+ {
208
+ link: '#',
209
+ label: 'Request a quote',
210
+ classes: 'c-button--small'
211
+ }
212
+ ]
163
213
  }
164
214
  }) }}
165
- {{ industryCard({
166
- title: 'Academia',
167
- link: '',
215
+ {{ productCard({
216
+ title: 'Epsilon range',
217
+ description: 'The Epsilon 1 is powered by the latest advances in excitation and detection technology.',
168
218
  image: {
169
- src: '/static/img/sector-1.jpg',
170
- alt: ''
219
+ src: '/static/img/products-4.jpg',
220
+ alt: 'Zetasizer Advance range'
221
+ },
222
+ footer: {
223
+ buttons: [
224
+ {
225
+ link: '#',
226
+ label: 'View range',
227
+ classes: 'c-button--small'
228
+ },
229
+ {
230
+ link: '#',
231
+ label: 'Request a quote',
232
+ classes: 'c-button--small'
233
+ }
234
+ ]
171
235
  }
172
236
  }) }}
173
237
  </div>
174
238
  </div>
175
- <div id="tab-industry-2" class="c-tab">
239
+ <div id="tab-product-2" class="c-tab">
176
240
  <div class="o-grid o-grid--of-four o-grid--swipeable">
177
- {{ industryCard({
178
- title: 'Biologics',
179
- link: '',
241
+ {{ technologyCard({
242
+ title: 'X-ray Diffraction (XRD)',
243
+ link: '#',
244
+ description: 'XRD is the only laboratory technique that non-destructively and accurately obtains information such as chemical composition.',
180
245
  image: {
181
- src: '/static/img/sector-3.jpg',
246
+ src: '/static/img/sector-5.jpg',
182
247
  alt: ''
248
+ },
249
+ footer: {
250
+ button: {
251
+ label: 'View technology'
252
+ }
183
253
  }
184
254
  }) }}
185
- {{ industryCard({
186
- title: 'Food and drink analysis',
187
- link: '',
255
+ {{ technologyCard({
256
+ title: 'Dynamic Light Scattering (DLS)',
257
+ link: '#',
258
+ description: 'Dynamic Light Scattering for size characterization of proteins, nanoparticles, polymers and colloidal dispersions.',
188
259
  image: {
189
260
  src: '/static/img/sector-4.jpg',
190
261
  alt: ''
262
+ },
263
+ footer: {
264
+ button: {
265
+ label: 'View technology'
266
+ }
191
267
  }
192
268
  }) }}
193
- {{ industryCard({
194
- title: 'Pharmaceutical solutions',
195
- link: '',
196
- image: {
197
- src: '/static/img/sector-5.jpg',
198
- alt: ''
199
- }
200
- }) }}
201
- {{ industryCard({
202
- title: 'Contract research services',
203
- link: '',
269
+ {{ technologyCard({
270
+ title: 'X-ray fluorescence (XRF)',
271
+ link: '#',
272
+ description: 'X-ray fluorescence is an analytical technique that can be used to determine the chemical composition of a wide variety of sample types.',
204
273
  image: {
205
- src: '/static/img/sector-1.jpg',
274
+ src: '/static/img/sector-3.jpg',
206
275
  alt: ''
276
+ },
277
+ footer: {
278
+ button: {
279
+ label: 'View technology'
280
+ }
207
281
  }
208
282
  }) }}
209
- {{ industryCard({
210
- title: 'Academia',
211
- link: '',
283
+ {{ technologyCard({
284
+ title: 'Nanoparticle Tracking Analysis',
285
+ link: '#',
286
+ description: 'Utilizes the properties of both light scattering and Brownian motion in order to obtain the nanoparticle size distribution of samples in liquid suspension.',
212
287
  image: {
213
288
  src: '/static/img/sector-2.jpg',
214
289
  alt: ''
290
+ },
291
+ footer: {
292
+ button: {
293
+ label: 'View technology'
294
+ }
215
295
  }
216
296
  }) }}
217
297
  </div>
218
298
  </div>
219
- <div id="tab-industry-3" class="c-tab">
299
+ <div id="tab-product-3" class="c-tab">
220
300
  <div class="o-grid o-grid--of-four o-grid--swipeable">
221
- {{ industryCard({
222
- title: 'Advanced manufacturing',
223
- link: '',
224
- image: {
225
- src: '/static/img/sector-5.jpg',
226
- alt: ''
227
- }
228
- }) }}
229
- {{ industryCard({
230
- title: 'Aerospace and automotive',
231
- link: '',
232
- image: {
233
- src: '/static/img/sector-1.jpg',
234
- alt: ''
235
- }
236
- }) }}
237
- {{ industryCard({
238
- title: 'Battery and energy',
239
- link: '',
240
- image: {
241
- src: '/static/img/sector-2.jpg',
242
- alt: ''
243
- }
244
- }) }}
245
- {{ industryCard({
246
- title: 'Electronics and semiconductors',
247
- link: '',
301
+ {{ measurementTypeCard({
302
+ title: 'Particle size',
303
+ link: '#',
304
+ description: 'Measurement of particle size distributions is routinely carried out across a wide range of industries.',
248
305
  image: {
249
306
  src: '/static/img/sector-3.jpg',
250
307
  alt: ''
308
+ },
309
+ footer: {
310
+ button: {
311
+ label: 'View measurement type'
312
+ }
251
313
  }
252
314
  }) }}
253
- {{ industryCard({
254
- title: 'Environmental monitoring and analysis',
255
- link: '',
256
- image: {
257
- src: '/static/img/sector-4.jpg',
258
- alt: ''
259
- }
260
- }) }}
261
- {{ industryCard({
262
- title: 'Forensic analysis',
263
- link: '',
315
+ {{ measurementTypeCard({
316
+ title: 'Zeta potential',
317
+ link: '#',
318
+ description: 'Zeta potential measurements to improve formulation stability and shelf life and reduce formulation time and cost.',
264
319
  image: {
265
- src: '/static/img/sector-5.jpg',
320
+ src: '/static/img/sector-2.jpg',
266
321
  alt: ''
322
+ },
323
+ footer: {
324
+ button: {
325
+ label: 'View measurement type'
326
+ }
267
327
  }
268
328
  }) }}
269
- {{ industryCard({
270
- title: 'Nanomaterials',
271
- link: '',
329
+ {{ measurementTypeCard({
330
+ title: 'Binding affinity',
331
+ link: '#',
332
+ description: 'Understanding binding affinity is key to appreciation of the intermolecular interactions driving biological processes.',
272
333
  image: {
273
334
  src: '/static/img/sector-1.jpg',
274
335
  alt: ''
336
+ },
337
+ footer: {
338
+ button: {
339
+ label: 'View measurement type'
340
+ }
275
341
  }
276
342
  }) }}
277
- {{ industryCard({
278
- title: 'Polymers, plastics, fibers and elastomers',
279
- link: '',
280
- image: {
281
- src: '/static/img/sector-2.jpg',
282
- alt: ''
283
- }
284
- }) }}
285
- {{ industryCard({
286
- title: 'Specialty chemicals',
287
- link: '',
343
+ {{ measurementTypeCard({
344
+ title: 'Moisture content',
345
+ link: '#',
346
+ description: 'The determination of moisture is often a critical component in manufacturing processes and quality assurance.',
288
347
  image: {
289
- src: '/static/img/sector-3.jpg',
348
+ src: '/static/img/sector-5.jpg',
290
349
  alt: ''
350
+ },
351
+ footer: {
352
+ button: {
353
+ label: 'View measurement type'
354
+ }
291
355
  }
292
356
  }) }}
293
357
  </div>
294
358
  </div>
295
- </div>
296
359
  </div>
297
-
360
+ <div class="u-bg-blue-step-3 u-pad-s-m u-split u-margin-top-l">
361
+ <h3>Explore our full range of technologies</h3>
362
+ {{ button({
363
+ link: '#',
364
+ label: 'View all measurement types'
365
+ }) }}
366
+ </div>
298
367
  </div>
299
368
  </div>
300
369
  </section>
@@ -9,7 +9,7 @@ tagTitle: Range
9
9
  {% from "components/usp/macro.njk" import usp %}
10
10
  {% from "components/breadcrumb/macro.njk" import breadcrumb %}
11
11
  {% from "components/button/macro.njk" import button %}
12
- {% from "components/card/macro.njk" import productComparisonCard %}
12
+ {% from "components/card/macro.njk" import productCard %}
13
13
  {% from "components/comparison-table/macro.njk" import comparisonTable %}
14
14
  {% from "components/hero/macro.njk" import hero %}
15
15
 
@@ -95,7 +95,7 @@ tagTitle: Range
95
95
 
96
96
  <div id="products" class="u-pad-y-xl" style="scroll-margin-top:70px">
97
97
  <div class="o-grid o-grid--of-three u-wrap">
98
- {{ productComparisonCard({
98
+ {{ productCard({
99
99
  title: 'Mastersizer 3000',
100
100
  description: 'Delivering the data you need for outcomes you can trust',
101
101
  image: {
@@ -132,8 +132,8 @@ tagTitle: Range
132
132
  }
133
133
  ]
134
134
  }
135
- })}}
136
- {{ productComparisonCard({
135
+ }) }}
136
+ {{ productCard({
137
137
  title: 'Mastersizer 3000E',
138
138
  description: 'Entry level particle size analyzer',
139
139
  image: {
@@ -170,7 +170,7 @@ tagTitle: Range
170
170
  }
171
171
  ]
172
172
  }
173
- })}}
173
+ }) }}
174
174
  <div class="u-flow u-margin-top-auto">
175
175
  <h4 class="c-h c-h--step-4">Interested in a demonstration?</h4>
176
176
  <div class="o-prose u-flow--prose">
@@ -75,14 +75,16 @@ Typical materials involved in advanced thin film devices are semiconductors, met
75
75
  <p class="c-h c-h--upper">Explore electronics and semiconductors</p>
76
76
  <div class="o-grid o-grid--of-three-early">
77
77
  {{ industryCard({
78
+ classes: 'c-industry-card--heading',
78
79
  title: 'CMP slurry',
79
- link: '',
80
+ link: '#',
80
81
  image: {
81
82
  src: 'https://www.malvernpanalytical.com/resource/img/placeholder.png?quality=60',
82
83
  alt: ''
83
84
  }
84
85
  }) }}
85
86
  {{ industryCard({
87
+ classes: 'c-industry-card--heading',
86
88
  title: 'Compound semiconductors',
87
89
  link: '',
88
90
  image: {
@@ -91,6 +93,7 @@ Typical materials involved in advanced thin film devices are semiconductors, met
91
93
  }
92
94
  }) }}
93
95
  {{ industryCard({
96
+ classes: 'c-industry-card--heading',
94
97
  title: 'Electronic displays',
95
98
  link: '',
96
99
  image: {
@@ -99,6 +102,7 @@ Typical materials involved in advanced thin film devices are semiconductors, met
99
102
  }
100
103
  }) }}
101
104
  {{ industryCard({
105
+ classes: 'c-industry-card--heading',
102
106
  title: 'Silicon semiconductors',
103
107
  link: '',
104
108
  image: {
@@ -107,6 +111,7 @@ Typical materials involved in advanced thin film devices are semiconductors, met
107
111
  }
108
112
  }) }}
109
113
  {{ industryCard({
114
+ classes: 'c-industry-card--heading',
110
115
  title: 'Solder materials',
111
116
  link: '',
112
117
  image: {
@@ -0,0 +1,4 @@
1
+ <svg width="136" height="135" viewBox="0 0 136 135" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M105.184 91.433C87.3087 109.308 58.3278 109.308 40.453 91.433C22.5782 73.5582 22.5782 44.5774 40.453 26.7025M65.5912 112.066H80.0453M72.8182 112.066V104.839" stroke="#333333" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
3
+ <path d="M72.8177 95.2043C92.7747 95.2043 108.953 79.026 108.953 59.069C108.953 39.112 92.7747 22.9337 72.8177 22.9337M72.8177 95.2043C52.8607 95.2043 36.6824 79.026 36.6824 59.069C36.6824 39.112 52.8607 22.9337 72.8177 22.9337M72.8177 95.2043C84.7919 95.2043 94.4989 79.026 94.4989 59.069C94.4989 39.112 84.7919 22.9337 72.8177 22.9337M72.8177 95.2043C60.8435 95.2043 51.1365 79.026 51.1365 59.069C51.1365 39.112 60.8435 22.9337 72.8177 22.9337M72.8177 95.2043V22.9337M43.9094 78.3412L101.726 78.3412M43.9094 39.7969L101.726 39.7969" stroke="white" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
4
+ </svg>
@@ -0,0 +1,6 @@
1
+ <svg width="136" height="135" viewBox="0 0 136 135" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M51.4115 48.6266V51.6598C51.4115 57.9736 55.5794 63.1657 60.5871 63.1657C65.5947 63.1657 69.7626 57.9736 69.7626 51.6598V48.6266C69.7626 46.3077 67.3068 40.8458 60.5871 40.8458C53.8674 40.8458 51.4115 45.6839 51.4115 48.6266Z" stroke="white" stroke-width="5" stroke-linejoin="round"/>
3
+ <path d="M48.3775 73.5705C51.0626 72.0467 54.7914 71.0796 57.661 70.5797C59.5984 70.2422 61.5762 70.2422 63.5136 70.5797C66.3869 71.0803 70.1216 72.0492 72.8075 73.5763C73.4043 73.9157 73.8556 74.4516 74.1151 75.0873C74.8557 76.9018 76.3168 81.0938 76.3168 85.9265V93.9354H44.8578V85.9265C44.8578 81.1517 46.318 76.933 47.0589 75.0999C47.319 74.4563 47.7738 73.9131 48.3775 73.5705Z" stroke="white" stroke-width="5"/>
4
+ <path d="M114.493 39.0267C114.493 33.5039 110.016 29.0267 104.493 29.0267H24.6372C19.1143 29.0267 14.6372 33.5039 14.6372 39.0267V83.9332C14.6372 89.4561 19.1143 93.9332 24.6372 93.9332H73.4237C76.042 93.9332 78.5559 94.9601 80.4253 96.7933L91.7137 107.863C93.6119 109.725 96.8142 108.38 96.8142 105.721V98.9332C96.8142 96.1718 99.0528 93.9332 101.814 93.9332H104.493C110.016 93.9332 114.493 89.456 114.493 83.9332V39.0267Z" stroke="#333333" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
5
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M104.416 56.0295C113.775 56.0295 121.363 48.442 121.363 39.0823C121.363 29.7226 113.775 22.1351 104.416 22.1351C95.0559 22.1351 87.4684 29.7226 87.4684 39.0823C87.4684 48.442 95.0559 56.0295 104.416 56.0295ZM99.1436 44.8025V33.4526C99.1436 31.8792 100.876 30.9219 102.208 31.7596L111.45 37.5717C112.713 38.366 112.693 40.2135 111.413 40.9803L102.172 46.518C100.838 47.3168 99.1436 46.3565 99.1436 44.8025Z" fill="white"/>
6
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="136" height="135" viewBox="0 0 136 135" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M57.3667 93.3653H23C17.4771 93.3653 13 88.8882 13 83.3653V31.8654C13 26.3425 17.4772 21.8654 23 21.8654H113C118.523 21.8654 123 26.3425 123 31.8654V83.3653C123 88.8882 118.523 93.3653 113 93.3653H78.6333M57.3667 93.3653H78.6333M57.3667 93.3653V103.135C57.3667 108.658 52.8895 113.135 47.3667 113.135H46.3667M78.6333 93.3653V103.135C78.6333 108.658 83.1105 113.135 88.6333 113.135H89.6333" stroke="#333333" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
3
+ <path d="M55.7759 45.2015V70.1403C55.7759 72.4714 58.3183 73.9118 60.3179 72.7136L80.6246 60.5458C82.5443 59.3955 82.5742 56.6242 80.6798 55.4329L60.373 42.662C58.3752 41.4056 55.7759 42.8414 55.7759 45.2015Z" fill="white" stroke="white" stroke-width="4"/>
4
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="136" height="135" viewBox="0 0 136 135" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M21.0029 36.6926V39.4762C21.0029 45.2704 24.8279 50.0353 29.4234 50.0353C34.019 50.0353 37.844 45.2704 37.844 39.4762V36.6926C37.844 34.5645 35.5902 29.5521 29.4234 29.5521C23.2567 29.5521 21.0029 33.9921 21.0029 36.6926Z" stroke="white" stroke-width="5" stroke-linejoin="round"/>
3
+ <path d="M17.3803 89.2418L15.6821 103.658C15.3572 106.441 12.5901 108.616 9.9273 108.137C6.66157 107.551 5.2466 104.675 5.537 102.048L9.01124 72.9348C9.85435 66.3845 11.9733 63.438 14.7185 62.0392C17.7112 60.5142 23.1538 59.6442 26.1869 59.1496C28.1619 58.8275 30.1711 58.8347 32.1518 59.1196C35.9515 59.6661 41.4506 60.8331 44.6134 62.755C44.8465 62.8967 45.0565 63.0709 45.2504 63.2628L57.7999 75.6753C58.7481 76.5538 60.1363 76.7648 61.3027 76.2079L72.5893 70.8188C75.1964 69.574 78.3224 70.5363 79.7782 73.0318C81.4173 75.8417 80.3008 79.4524 77.3616 80.8466L59.6635 89.2418C58.5131 89.7875 57.1475 89.588 56.2012 88.7361L44.5587 78.255V100.852C44.5587 104.166 41.8724 106.852 38.5587 106.852H22.6478" stroke="white" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
4
+ <path d="M49.2756 53.9583V34.7963C49.2756 30.378 52.8574 26.7963 57.2756 26.7963H122.5C126.918 26.7963 130.5 30.378 130.5 34.7963V75.5442C130.5 79.9624 126.918 83.5442 122.5 83.5442H88.4409" stroke="#333333" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
5
+ </svg>