@@ -4,47 +4,51 @@ import styles from './HomepageFeatures.module.css';
4
4
5
5
const FeatureList = [
6
6
{
7
- title : 'Easy to Use' ,
7
+ title : 'Learn the options' ,
8
+ link : '/docs/types' ,
8
9
Svg : require ( '../../static/img/undraw_docusaurus_mountain.svg' ) . default ,
9
10
description : (
10
11
< >
11
- Docusaurus was designed from the ground up to be easily installed and
12
- used to get your website up and running quickly .
12
+ Learn the main charactersitics of each technology so you can pick the
13
+ one that better fits your needs .
13
14
</ >
14
15
) ,
15
16
} ,
16
17
{
17
- title : 'Focus on What Matters' ,
18
+ title : 'Check code snippets' ,
19
+ link : '/docs/snippets' ,
18
20
Svg : require ( '../../static/img/undraw_docusaurus_tree.svg' ) . default ,
19
21
description : (
20
22
< >
21
- Docusaurus lets you focus on your docs, and we'll do the chores. Go
22
- ahead and move your docs into the < code > docs </ code > directory .
23
+ See how different scenarios are implemented accross diferent
24
+ technologies .
23
25
</ >
24
26
) ,
25
27
} ,
26
28
{
27
- title : 'Powered by React' ,
29
+ title : 'Compare them' ,
30
+ link : '/docs/comparison' ,
28
31
Svg : require ( '../../static/img/undraw_docusaurus_react.svg' ) . default ,
29
32
description : (
30
33
< >
31
- Extend or customize your website layout by reusing React. Docusaurus can
32
- be extended while reusing the same header and footer.
34
+ See how they compare to each other for different metrics.
33
35
</ >
34
36
) ,
35
37
} ,
36
38
] ;
37
39
38
- function Feature ( { Svg, title, description} ) {
40
+ function Feature ( { Svg, title, description, link } ) {
39
41
return (
40
42
< div className = { clsx ( 'col col--4' ) } >
41
- < div className = "text--center" >
42
- < Svg className = { styles . featureSvg } alt = { title } />
43
- </ div >
44
- < div className = "text--center padding-horiz--md" >
45
- < h3 > { title } </ h3 >
46
- < p > { description } </ p >
47
- </ div >
43
+ < a href = { link } >
44
+ < div className = "text--center" >
45
+ < Svg className = { styles . featureSvg } alt = { title } />
46
+ </ div >
47
+ </ a >
48
+ < div className = "text--center padding-horiz--md" >
49
+ < h3 > < a href = { link } > { title } </ a > </ h3 >
50
+ < p > { description } </ p >
51
+ </ div >
48
52
</ div >
49
53
) ;
50
54
}
0 commit comments