mp-design-system 0.7.5 → 0.8.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (44) hide show
  1. package/dist/build/js/app.js +5 -3
  2. package/dist/build/js/app.js.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 +1 -1
  6. package/src/_includes/components/accordion/accordion.config.js +27 -0
  7. package/src/_includes/components/accordion/accordion.md +15 -0
  8. package/src/_includes/components/accordion/accordion.njk +10 -0
  9. package/src/_includes/components/accordion/accordion.scss +49 -0
  10. package/src/_includes/components/accordion/macro.njk +5 -0
  11. package/src/_includes/components/hero/hero.config.js +4 -4
  12. package/src/_includes/components/hero/hero.njk +10 -4
  13. package/src/_includes/components/hero/hero.scss +30 -4
  14. package/src/assets/js/app.js +2 -0
  15. package/src/assets/js/imports/accordion.js +19 -0
  16. package/src/assets/scss/components/index.scss +1 -0
  17. package/src/brand/downloads.njk +2 -2
  18. package/src/brand/visual/images.md +17 -17
  19. package/src/prototype/product.njk +24 -1
  20. package/src/prototype/range.njk +1 -1
  21. package/src/static/pdf/PN12558_Physical_branding_v23.pdf +0 -0
  22. package/src/static/img/grid-captivate-2.jpg +0 -0
  23. package/src/static/img/grid-captivate-3.jpg +0 -0
  24. package/src/static/img/grid-captivate-4.jpg +0 -0
  25. package/src/static/img/grid-convince-1.jpg +0 -0
  26. package/src/static/img/grid-convince-2.jpg +0 -0
  27. package/src/static/img/grid-convince-3.jpg +0 -0
  28. package/src/static/img/grid-convince-4.jpg +0 -0
  29. package/src/static/img/grid-convince-6.jpg +0 -0
  30. package/src/static/img/grid-inform-applications-1.jpg +0 -0
  31. package/src/static/img/grid-inform-applications-2.jpg +0 -0
  32. package/src/static/img/grid-inform-applications-3.jpg +0 -0
  33. package/src/static/img/grid-inform-tech-1.jpg +0 -0
  34. package/src/static/img/grid-inform-tech-2.jpg +0 -0
  35. package/src/static/img/grid-inform-tech-4.jpg +0 -0
  36. package/src/static/img/grid-inspire-1.jpg +0 -0
  37. package/src/static/img/grid-inspire-2.jpg +0 -0
  38. package/src/static/img/grid-inspire-3.jpg +0 -0
  39. package/src/static/img/grid-inspire-4.jpg +0 -0
  40. package/src/static/img/grid-inspire-5.jpg +0 -0
  41. package/src/static/pdf/FINAL Tone of voice guidelines April 2021.pdf +0 -0
  42. package/src/static/pdf/Mastersizer 3000.pdf +58 -53069
  43. package/src/static/pdf/PN12316_Digital_brand_quickstart_v06.pdf +45 -19388
  44. package/src/static/ppt/MP Elevator pitch.pptx +0 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mp-design-system",
3
- "version": "0.7.5",
3
+ "version": "0.8.0",
4
4
  "description": "",
5
5
  "main": "app.js",
6
6
  "scripts": {
@@ -0,0 +1,27 @@
1
+ module.exports = {
2
+ title: 'Accordion',
3
+ component: {
4
+ name: 'accordion'
5
+ },
6
+ docs: true,
7
+ context: {
8
+ items: [
9
+ {
10
+ title: 'Do I need to prepare the workspace prior to installation?',
11
+ content: 'All instruments need a power source, and some have additional requirements such as a water supply or waste extraction. Where this the case, we will advise you prior to shipping your instrument.'
12
+ },
13
+ {
14
+ title: 'What specialist skills or knowledge are required?',
15
+ content: 'You don\'t need any specialist skills or knowledge to perform a Smart Install. Simply follow the instructions provided.'
16
+ },
17
+ {
18
+ title: 'Do I need specialist tools or equipment to Smart Install a new instrument?',
19
+ content: '<ul><li>For installation of a Mastersizer or Zetasizer system, you will need a computer with internet access in order to view the installation guides. For installation of an Epsilon 1 XRF instrument, you will also need a smartphone or tablet to connect with our support personnel via a secure, augmented reality (AR) platform.</li><li>Everything else you need to install your new instrument will be provided.</li></ul>'
20
+ },
21
+ {
22
+ title: 'What languages are available for the Smart Install guides?',
23
+ content: '<ul><li>Mastersizer: English, Chinese, Korean, French, German and Japanese</li><li>Zetasizer: English, Chinese, Korean, French, German and Japanese</li><li>Epsilon 1: English, French, German and Japanese, Spanish and Portuguese</li></ul>'
24
+ }
25
+ ]
26
+ }
27
+ }
@@ -0,0 +1,15 @@
1
+ ## Blank HTML template
2
+ ```
3
+ <dl class="c-accordion">
4
+ <div class="c-accordion__item">
5
+ <dt class="c-accordion__title">Title one</dt>
6
+ <dd class="c-accordion__content o-prose u-flow--prose">Content one</dd>
7
+ </div>
8
+ <div class="c-accordion__item">
9
+ <dt class="c-accordion__title">Title two</dt>
10
+ <dd class="c-accordion__content o-prose u-flow--prose">Content two</dd>
11
+ </div>
12
+ </dl>
13
+ ```
14
+ - To make an item display in its opened state when the page loads, add the class `c-accordion--item__open`
15
+ - The classnames `o-prose` and `u-flow--prose` on the content are optional
@@ -0,0 +1,10 @@
1
+ {% from "components/icon/macro.njk" import icon %}
2
+
3
+ <dl class="c-accordion">
4
+ {% for item in params.items %}
5
+ <div class="c-accordion__item {{ 'c-accordion__item--open' if item.state }}">
6
+ <dt class="c-accordion__title">{{ item.title }}</dt>
7
+ <dd class="c-accordion__content o-prose u-flow--prose">{{ item.content | safe }}</dd>
8
+ </div>
9
+ {% endfor %}
10
+ </dl>
@@ -0,0 +1,49 @@
1
+ .c-accordion {
2
+ &__item {
3
+ @include padding('xs',0);
4
+
5
+ & + & {
6
+ border-top: 1px solid color('petrol', 'step-2');
7
+ }
8
+ }
9
+
10
+ &__title {
11
+ @include step(1);
12
+ @include padding('xs',0);
13
+ cursor: pointer;
14
+ font-weight: weight('bold');
15
+ position: relative;
16
+
17
+ &:before {
18
+ background-image: url('data:image/svg+xml;utf8,<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M9 1V17M1 9H17" stroke="%23252525" stroke-width="2" stroke-linecap="round"/></svg>');
19
+ background-position: center center;
20
+ background-repeat: no-repeat;
21
+ content: "";
22
+ display: block;
23
+ height: 1em;
24
+ left: 0;
25
+ position: absolute;
26
+ width: 1em;
27
+ }
28
+
29
+ .c-accordion__item--open &:before {
30
+ background-image: url('data:image/svg+xml;utf8,<svg width="10" height="2" viewBox="0 0 10 2" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 1H9" stroke="%23252525" stroke-width="2" stroke-linecap="round"/></svg>');
31
+ transform: scaleX(1.75);
32
+ }
33
+ }
34
+
35
+ &__content {
36
+ margin-left: 0;
37
+ @include padding-bottom('xs');
38
+ display: none;
39
+
40
+ .c-accordion__item--open & {
41
+ display: block;
42
+ }
43
+ }
44
+
45
+ &__title,
46
+ &__content {
47
+ @include padding-left('l-xl');
48
+ }
49
+ }
@@ -0,0 +1,5 @@
1
+ {% from "components/component/component.njk" import c %}
2
+
3
+ {% macro alert(params) %}
4
+ {{ c({ name: 'accordion' }, params) }}
5
+ {% endmacro %}
@@ -48,7 +48,7 @@ module.exports = {
48
48
  },
49
49
  cta: {
50
50
  label: 'Download brochure',
51
- link: '/static/pdf/Mastersizer 3000.pdf',
51
+ link: 'https://www.malvernpanalytical.com/en/assets/Mastersizer%203000%20Brochure%20%28EN%29_tcm50-58994.pdf',
52
52
  attrs: 'download',
53
53
  icon: 'file'
54
54
  }
@@ -102,9 +102,9 @@ module.exports = {
102
102
  // title: 'We\'re big on small.',
103
103
  // subtitle: null,
104
104
  // content: '<p>We make scientific instruments and services that make the invisible visible, and the impossible possible.</p>',
105
- // images: [
106
- // { src: '/static/img/homepage_1_back.webp' },
107
- // ],
105
+ // videoplaceholder: {
106
+ // src: 'https://p3.aprimocdn.net/malvernpanalytical/bf169dc6-9edb-4609-9ba8-add301206d1e/bridge-bg_Original%20file.webp?quality=60'
107
+ // },
108
108
  // shortvideo: [
109
109
  // { src: '' },
110
110
  // { type: 'video/mp4' },
@@ -13,6 +13,10 @@
13
13
  {%- set classes = classes + ' c-hero--homepage-light' -%}
14
14
  {% endif %}
15
15
 
16
+ {% if params.shortvideo %}
17
+ {%- set classes = classes + ' c-hero--homepage-video' -%}
18
+ {% endif %}
19
+
16
20
  <figure class="{{ classes }}">
17
21
  <div class="u-wrap">
18
22
  <div class="c-hero__content">
@@ -49,9 +53,11 @@
49
53
  {% endif %}
50
54
 
51
55
  {% if params.shortvideo %}
52
- <video id="videoBackground" class="c-hero__video-bg" autoplay loop>
53
- <source src="" type="video/mp4">
54
- </video>
56
+ <div class="c-hero__video-bg" style="background-image:url({{ params.videoplaceholder.src }});">
57
+ <video id="videoBackground" autoplay loop>
58
+ <source src="https://p3.aprimocdn.net/malvernpanalytical/304f04aa-ae04-4bed-9946-ae3101152327/PN12593_Brand_Movie_Malvern_Panalytical_MIX_0dBfs_website_header_Original%20file.mp4" type="video/mp4">
59
+ </video>
60
+ </div>
55
61
  {% endif %}
56
62
 
57
63
  {% if params.homepage %}
@@ -75,7 +81,7 @@
75
81
  </div>
76
82
  <div class="c-lightbox__slide active">
77
83
  <video class="c-lightbox__video" controls controlslist="nodownload">
78
- <source src="" type="video/mp4">
84
+ <source src="https://p3.aprimocdn.net/malvernpanalytical/304f04aa-ae04-4bed-9946-ae3101152327/PN12593_Brand_Movie_Malvern_Panalytical_MIX_0dBfs_website_header_Original%20file.mp4" type="video/mp4">
79
85
  </video>
80
86
  </div>
81
87
  </div>
@@ -141,7 +141,6 @@
141
141
  z-index: -1;
142
142
  transition: opacity 3s ease;
143
143
  background-position: 60% 40%;
144
- -webkit-mask-image: radial-gradient(circle farthest-side at top right, black 80%, transparent 98%);
145
144
 
146
145
  &:after {
147
146
  display: none;
@@ -157,21 +156,47 @@
157
156
  @extend .c-hero__image-bg;
158
157
  z-index: 1;
159
158
  }
159
+ }
160
+ }
161
+
162
+ &--homepage-video {
163
+ position: relative;
164
+
165
+ &::after {
166
+ position: absolute;
167
+ content: '';
168
+ top: 0;
169
+ left: 0;
170
+ background: rgba(black, 0.33);
171
+ width: 100%;
172
+ height: 100%;
173
+
174
+ @media (min-width: 38em) {
175
+ background: radial-gradient(circle farthest-side at top right, rgba(46, 50, 51, 0) 0%, rgba(46, 50, 51, 0) 15.16%, rgba(46, 50, 51, 0.2) 27.66%, rgba(41, 54, 56, 0.55) 39.61%, rgba(35, 66, 71, 0.8) 49.78%, #005461 59.87%, #003039 100%);
176
+ }
177
+ }
160
178
 
161
- &__video-bg {
179
+ .c-hero {
180
+ &__video-bg {
162
181
  width: 100%;
163
182
  height: auto;
164
183
  margin-bottom: -6px;
184
+ background-size: cover;
165
185
 
166
186
  @media (min-width: 38em) {
167
187
  position: absolute;
168
- top: 0;
188
+ top: 50%;
169
189
  right: 0;
170
190
  left: 40%;
171
191
  max-width: 60%;
172
192
  height: 100%;
193
+ transform: translateY(-50%);
194
+ }
195
+
196
+ video {
197
+ width: 100%;
198
+ height: 100%;
173
199
  object-fit: cover;
174
- -webkit-mask-image: radial-gradient(circle farthest-side at top right, black 80%, transparent 98%);
175
200
  }
176
201
  }
177
202
 
@@ -181,6 +206,7 @@
181
206
  right: 0;
182
207
  bottom: calc(56.25% / 2 - 25px);
183
208
  left: 0;
209
+ background: rgba(black, 0.2);
184
210
  margin: 0 auto;
185
211
 
186
212
  @media (min-width: 38em) {
@@ -1,3 +1,4 @@
1
+ import Accordion from './imports/accordion';
1
2
  import Carousel from './imports/carousel';
2
3
  import ClearForm from './imports/clear-form';
3
4
  import Comparison from './imports/comparison';
@@ -17,6 +18,7 @@ import Tabs from './imports/tabs';
17
18
  HTMLCollection.prototype.forEach = Array.prototype.forEach;
18
19
  }
19
20
 
21
+ Accordion();
20
22
  Carousel();
21
23
  ClearForm();
22
24
  Comparison();
@@ -0,0 +1,19 @@
1
+ function Accordion() {
2
+ const accordions = Array.from(document.querySelectorAll('.c-accordion__title'));
3
+ accordions.forEach(setupAccordions);
4
+ }
5
+
6
+ function setupAccordions(title) {
7
+ title.addEventListener('click', titleClick())
8
+ }
9
+
10
+ function titleClick() {
11
+ return (event) => {
12
+ console.log(event)
13
+ var item = event.currentTarget.parentElement;
14
+ console.log(item)
15
+ item.classList.toggle('c-accordion__item--open');
16
+ }
17
+ }
18
+
19
+ export default Accordion;
@@ -27,6 +27,7 @@
27
27
  @import '~comp/slat/slat.scss';
28
28
  @import '~comp/hero/hero.scss';
29
29
  @import '~comp/quote/quote.scss';
30
+ @import '~comp/accordion/accordion.scss';
30
31
 
31
32
  @import './headings.scss';
32
33
  @import './gallery.scss';
@@ -13,7 +13,7 @@ tags: brand
13
13
  <div class="u-flow--l">
14
14
 
15
15
  {{ twi({
16
- link: "/static/pdf/FINAL Tone of voice guidelines April 2021.pdf",
16
+ link: "https://malvern.sharepoint.com/:b:/r/sites/Intranet/Shared%20Documents/FINAL%20Tone%20of%20voice%20guidelines%20April%202021.pdf?csf=1&web=1&e=vW1Qzs",
17
17
  label: "Tone of voice guidelines",
18
18
  classes: "u-link",
19
19
  icon: "file"
@@ -29,7 +29,7 @@ icon: 'file'
29
29
  <br>
30
30
 
31
31
  {{ twi({
32
- link: "/static/ppt/MP Elevator pitch.pptx",
32
+ link: "https://malvern.sharepoint.com/:p:/r/sites/SVP/Shared%20Documents/Elevator%20Pitch%20(different%20languages)/Elevator%20pitch%20PPT%20(internal-external).pptx?d=w5ae5e5afa8c042f9968f95878a910471&csf=1&web=1&e=ui0qAk",
33
33
  label: "Elevator pitch - Powerpoint presentation",
34
34
  classes: "u-link",
35
35
  icon: "file"
@@ -42,39 +42,39 @@ The images we use can have a great effect on how people perceive our company. Ju
42
42
  <div class="c-library__photo-grid grid-1">
43
43
  <div class="u-bg-petrol u-white"><h2>Captivate</h2></div>
44
44
  <img src="/static/img/grid-captivate-1.jpg" alt="A silhouette of a woman's face, overlaid with plotted lines and charts of data" loading="lazy">
45
- <img src="/static/img/grid-captivate-3.jpg" alt="Looking up through tree branches at the Milky Way, filling the night sky" loading="lazy">
46
- <img src="/static/img/grid-captivate-4.jpg" alt="A glowing Malvern Panalytical logo floats amongst trees in a misty forest " loading="lazy">
47
- <img src="/static/img/grid-captivate-2.jpg" alt="A network of brass pins embedded in a wooden surface, connected with fine wire" loading="lazy">
45
+ <img src="https://p3.aprimocdn.net/malvernpanalytical/f4c97a0a-bb44-417d-a935-adea010bdf70/shutterstock_600381020_Low-res.JPG" alt="Looking up through tree branches at the Milky Way, filling the night sky" loading="lazy">
46
+ <img src="https://p3.aprimocdn.net/malvernpanalytical/519c5d77-203b-433f-a8d6-adf600fd4f42/shutterstock_1729372963_Low-res.JPG" alt="A glowing Malvern Panalytical logo floats amongst trees in a misty forest " loading="lazy">
47
+ <img src="https://p3.aprimocdn.net/malvernpanalytical/d3e8fca9-b331-4798-ac4e-adea010d1c42/shutterstock_455077471_Low-res.JPG" alt="A network of brass pins embedded in a wooden surface, connected with fine wire" loading="lazy">
48
48
  </div>
49
49
 
50
50
  <div class="c-library__photo-grid grid-1">
51
51
  <div class="u-bg-red u-white"><h2>Inspire</h2></div>
52
- <img src="/static/img/grid-inspire-1.jpg" alt="A scientist wearing protective gear leans in, using a pipette to fill a cuvette" loading="lazy">
53
- <img src="/static/img/grid-inspire-2.jpg" alt="An extreme close-up of tiny underwater plants, glowing in sunlight" loading="lazy">
54
- <img src="/static/img/grid-inspire-4.jpg" alt="An industrial pipeline silhouetted against the dawn sky" loading="lazy">
55
- <img src="/static/img/grid-inspire-3.jpg" alt="A CNC machine cuts into a piece of metal, sending sparks flying" loading="lazy">
52
+ <img src="https://p3.aprimocdn.net/malvernpanalytical/981276ff-0ab9-4be9-aedd-adea010bf005/shutterstock_145005193_Low-res.JPG" alt="A scientist wearing protective gear leans in, using a pipette to fill a cuvette" loading="lazy">
53
+ <img src="https://p3.aprimocdn.net/malvernpanalytical/372bcddb-261b-4272-a3fd-adea010c01ad/shutterstock_1408636658_Low-res.JPG" alt="An extreme close-up of tiny underwater plants, glowing in sunlight" loading="lazy">
54
+ <img src="https://p3.aprimocdn.net/malvernpanalytical/d80bfeb7-1b0c-40cf-97e8-adea010bea98/shutterstock_174607778_Low-res.JPG" alt="An industrial pipeline silhouetted against the dawn sky" loading="lazy">
55
+ <img src="https://p3.aprimocdn.net/malvernpanalytical/7f424ea8-8443-444a-8c91-adea010bee72/shutterstock_712297567_Low-res.JPG" alt="A CNC machine cuts into a piece of metal, sending sparks flying" loading="lazy">
56
56
  </div>
57
57
 
58
58
  <div class="c-library__photo-grid grid-2">
59
59
  <div class="u-bg-blue u-white"><h2>Inform - Applications</h2></div>
60
- <img src="/static/img/grid-inform-applications-1.jpg" alt="An engineer in a hard hat crouches down to install solar panels on a roof" loading="lazy">
61
- <img src="/static/img/grid-inform-applications-2.jpg" alt="A deep sea oil rig lit up against the evening sky" loading="lazy">
62
- <img src="/static/img/grid-inform-applications-3.jpg" alt="A scientist collects a water sample from a stream and checks it against a touchscreen device" loading="lazy">
60
+ <img src="https://p3.aprimocdn.net/malvernpanalytical/971f54df-cdb3-43d8-ac63-adea010af455/shutterstock_1515878372_Low-res.JPG" alt="Three engineers in a workshop building a robotic device" loading="lazy">
61
+ <img src="https://p3.aprimocdn.net/malvernpanalytical/1f20be8d-61fc-465b-b67d-adea010a3cad/shutterstock_717797560_Low-res.JPG" alt="A deep sea oil rig lit up against the evening sky" loading="lazy">
62
+ <img src="https://p3.aprimocdn.net/malvernpanalytical/86aad13f-9f20-4a18-8a2e-adea010ae3d9/shutterstock_111870260_Low-res.JPG" alt="An aerial view of a water treatment plant in the sunshine" loading="lazy">
63
63
  </div>
64
64
 
65
65
  <div class="c-library__photo-grid grid-2">
66
66
  <div class="u-bg-blue u-white"><h2>Inform - Technology</h2></div>
67
- <img src="/static/img/grid-inform-tech-2.jpg" alt="An engineer types on a laptop, surrounded by server racks, with cable bundles covering the walls and ceiling" loading="lazy">
68
- <img src="/static/img/grid-inform-tech-1.jpg" alt="A scientist wearing protective gear looks into a microscope" loading="lazy">
69
- <img src="/static/img/grid-inform-tech-4.jpg" alt="A network of glass spheres, some lit from within, connected by metal rods, suspended in darkness" loading="lazy">
67
+ <img src="https://p3.aprimocdn.net/malvernpanalytical/b7f2beab-a7e1-48f7-83e1-adea010ca426/shutterstock_1921649444_Low-res.JPG" alt="An engineer in a data center typing on a laptop, surrounded by server racks" loading="lazy">
68
+ <img src="https://p3.aprimocdn.net/malvernpanalytical/523373f2-3a26-45b4-9b1b-adea010caab1/shutterstock_1073659409_Low-res.JPG" alt="A scientist wearing protective gear looks into a microscope" loading="lazy">
69
+ <img src="https://p3.aprimocdn.net/malvernpanalytical/5b80c088-2b69-4bb9-a705-adea010d0fb1/shutterstock_1770220811_Low-res.JPG" alt="A network of glass spheres, some lit from within, connected by metal rods, suspended in darkness" loading="lazy">
70
70
  </div>
71
71
 
72
72
  <div class="c-library__photo-grid grid-1">
73
73
  <div class="u-bg-green u-white"><h2>Convince</h2></div>
74
- <img src="/static/img/grid-convince-1.jpg" alt="A woman holds a mobile phone to her ear, and smiles at the camera" loading="lazy">
75
- <img src="/static/img/grid-convince-2.jpg" alt="Liquid is mixed inside a scientific machine, lit from within" loading="lazy">
76
- <img src="/static/img/grid-convince-3.jpg" alt="Plants with green leaves growing out of glass containers in a laboratory" loading="lazy">
77
- <img src="/static/img/grid-convince-4.jpg" alt="An aerial view of farmland, with buildings connected by CGI arcs of light in the air" loading="lazy">
74
+ <img src="https://p3.aprimocdn.net/malvernpanalytical/fb25d412-a13c-47fa-8740-adea010b4722/shutterstock_1522368992_Low-res.JPG" alt="A birds-eye view of people raising their glasses around a dinner table" loading="lazy">
75
+ <img src="https://p3.aprimocdn.net/malvernpanalytical/87714d0a-16c8-43f5-a7e0-adea01143f6a/shutterstock_326505566_Low-res.JPG" alt="A barista pours steamed milk into a latte, creating a heart pattern" loading="lazy">
76
+ <img src="https://p3.aprimocdn.net/malvernpanalytical/2d6b4793-692f-4ff8-ab51-adea010c6f71/shutterstock_128581706_Low-res.JPG" alt="Plants with green leaves growing out of glass containers in a laboratory" loading="lazy">
77
+ <img src="https://p3.aprimocdn.net/malvernpanalytical/fe398dc5-a0db-4801-a680-adea010c65e1/shutterstock_1898110876_Low-res.JPG" alt="An aerial view of farmland, with buildings connected by CGI arcs of light in the air" loading="lazy">
78
78
  </div>
79
79
 
80
80
  <div class="u-wrap--content u-margin-top-xl">
@@ -31,7 +31,7 @@ tagTitle: Product
31
31
  <h2 class="c-h c-h--page-subtitle u-margin-top-s-m">Delivering the data you need for outcomes you can trust</h2>
32
32
  <div class="mp o-prose u-margin-top-s-m u-flow--m">
33
33
  <p>From pharma to food, manufacturing to environmental monitoring, organisations the world over trust the Mastersizer 3000 laser diffraction particle size analyser for fast, accurate and reliable analysis. The instrument’s ease of use and versatility means it’s valued for both scientific research and manufacturing quality control.</p>
34
- {{ twi({ classes: 'u-link', label: 'Download brochure', link: '/static/pdf/Mastersizer 3000.pdf', attrs: 'download', icon: 'file', inline: true, colour: 'white' }) }}
34
+ {{ twi({ classes: 'u-link', label: 'Download brochure', link: 'https://www.malvernpanalytical.com/en/assets/Mastersizer%203000%20Brochure%20%28EN%29_tcm50-58994.pdf', attrs: 'download', icon: 'file', inline: true, colour: 'white' }) }}
35
35
  </div>
36
36
  <div class="u-margin-top-s-m">
37
37
  {{ button({ link: '/prototype/request-a-quote', label: 'Request a quote', inline: true }) }}
@@ -84,6 +84,7 @@ tagTitle: Product
84
84
  links: [
85
85
  { link: '#features-and-benefits', label: 'Features and benefits' },
86
86
  { link: '#key-components', label: 'Key components' },
87
+ { link: '#faqs', label: 'FAQs' },
87
88
  { link: '#use-cases', label: 'Use cases' },
88
89
  { link: '#specifications', label: 'Specifications' },
89
90
  { link: '#accessories', label: 'Accessories' },
@@ -150,6 +151,28 @@ tagTitle: Product
150
151
  </ul>
151
152
  </div>
152
153
 
154
+ <div class="mp o-prose u-flow--prose" id="faqs">
155
+ <h2>Frequently asked questions</h2>
156
+ <dl class="c-accordion">
157
+ <div class="c-accordion__item ">
158
+ <dt class="c-accordion__title">Do I need to prepare the workspace prior to installation?</dt>
159
+ <dd class="c-accordion__content o-prose u-flow--prose">All instruments need a power source, and some have additional requirements such as a water supply or waste extraction. Where this the case, we will advise you prior to shipping your instrument.</dd>
160
+ </div>
161
+ <div class="c-accordion__item ">
162
+ <dt class="c-accordion__title">What specialist skills or knowledge are required?</dt>
163
+ <dd class="c-accordion__content o-prose u-flow--prose">You don't need any specialist skills or knowledge to perform a Smart Install. Simply follow the instructions provided.</dd>
164
+ </div>
165
+ <div class="c-accordion__item ">
166
+ <dt class="c-accordion__title">Do I need specialist tools or equipment to Smart Install a new instrument?</dt>
167
+ <dd class="c-accordion__content o-prose u-flow--prose"><ul><li>For installation of a Mastersizer or Zetasizer system, you will need a computer with internet access in order to view the installation guides. For installation of an Epsilon 1 XRF instrument, you will also need a smartphone or tablet to connect with our support personnel via a secure, augmented reality (AR) platform.</li><li>Everything else you need to install your new instrument will be provided.</li></ul></dd>
168
+ </div>
169
+ <div class="c-accordion__item ">
170
+ <dt class="c-accordion__title">What languages are available for the Smart Install guides?</dt>
171
+ <dd class="c-accordion__content o-prose u-flow--prose"><ul><li>Mastersizer: English, Chinese, Korean, French, German and Japanese</li><li>Zetasizer: English, Chinese, Korean, French, German and Japanese</li><li>Epsilon 1: English, French, German and Japanese, Spanish and Portuguese</li></ul></dd>
172
+ </div>
173
+ </dl>
174
+ </div>
175
+
153
176
  <div class="mp o-prose u-flow--prose" id="use-cases">
154
177
  <h2>What customers use the Mastersizer 3000 for</h2>
155
178
  <p>The Mastersizer 3000 lets users find the particle size ‘sweet spot’ for a vast array of processes – helping them create substances that behave more <strong>predictably</strong>, more <strong>safely</strong> and to a higher <strong>quality</strong>. Mastersizers are frequently used for:</p>
@@ -31,7 +31,7 @@ tagTitle: Range
31
31
  },
32
32
  cta: {
33
33
  label: 'Download brochure',
34
- link: '/static/pdf/Mastersizer 3000.pdf',
34
+ link: 'https://www.malvernpanalytical.com/en/assets/Mastersizer%203000%20Brochure%20%28EN%29_tcm50-58994.pdf',
35
35
  attrs: 'download',
36
36
  icon: 'file'
37
37
  }
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file