-
-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathindex.js
63 lines (59 loc) · 1.98 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
import React from 'react';
import classnames from 'classnames';
import useBaseUrl from '@docusaurus/useBaseUrl';
import styles from './benefits.module.scss';
function BenefitSection(props) {
return (
<div className={styles.benefits}>
<div className={classnames('card', styles.benefitCard)}>
<div className="card__image">
<img
src={useBaseUrl('img/flexible.png')}
alt="Flexible sample"
/>
</div>
<div className="card__header">
<h2>Flexible</h2>
</div>
<div className="card__body">
<p>
Using code over configuration, utilize all of JavaScript to create your gulpfile—where tasks can be written using your own code or chained single purpose plugins.
</p>
</div>
</div>
<div className={classnames('card', styles.benefitCard)}>
<div className="card__image">
<img
src={useBaseUrl('img/composable.png')}
alt="Composable sample"
/>
</div>
<div className="card__header">
<h2>Composable</h2>
</div>
<div className="card__body">
<p>
Write individual, focused tasks and compose them into larger operations, providing you with speed and accuracy while reducing repetition.
</p>
</div>
</div>
<div className={classnames('card', styles.benefitCard)}>
<div className="card__image">
<img
src={useBaseUrl('img/efficient.png')}
alt="Efficient sample"
/>
</div>
<div className="card__header">
<h2>Efficient</h2>
</div>
<div className="card__body">
<p>
By using gulp streams, you can apply many transformations to your files while in memory before anything is written to the disk—significantly speeding up your build process.
</p>
</div>
</div>
</div>
);
}
export default BenefitSection;