-
-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathindex.js
51 lines (47 loc) · 1.7 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
import React from 'react';
import styles from './hero.module.scss';
import Svg from './svg';
const Hero = () => {
return (
<div className={styles.hero}>
<div className={styles.heroContent}>
<h1 className={styles.heroTagline}>A toolkit to automate & enhance your workflow</h1>
<p className={styles.heroDescription}>
Leverage gulp and the flexibility of JavaScript to automate slow, repetitive workflows and compose them into efficient build pipelines.
</p>
</div>
<div className={styles.heroVisual}>
<ul className={styles.techList}>
<li className={styles.techItem}>
<span className={styles.techName}>TypeScript</span>
<span>Develop in any language</span>
</li>
<li className={styles.techItem}>
<span className={styles.techName}>PNG</span>
<span>Create assets with any tool</span>
</li>
<li className={styles.techItem}>
<span className={styles.techName}>Markdown</span>
<span>Write using any format</span>
</li>
</ul>
<Svg />
<ul className={styles.techList}>
<li className={styles.techItem}>
<span className={styles.techName}>JavaScript</span>
<span>Get compiled code</span>
</li>
<li className={styles.techItem}>
<span className={styles.techName}>WebP</span>
<span>Get optimized images</span>
</li>
<li className={styles.techItem}>
<span className={styles.techName}>HTML</span>
<span>Get rendered content</span>
</li>
</ul>
</div>
</div>
)
}
export default Hero;