Skip to content

Commit 4fdf02e

Browse files
committed
Add key features
1 parent 123c41a commit 4fdf02e

File tree

3 files changed

+61
-228
lines changed

3 files changed

+61
-228
lines changed

src/components/HomepageFeatures/index.tsx

Lines changed: 6 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -10,40 +10,27 @@ type FeatureItem = {
1010

1111
const FeatureList: FeatureItem[] = [
1212
{
13-
title: 'Easy to Use',
14-
Svg: require('@site/static/img/undraw_docusaurus_mountain.svg').default,
15-
description: (
13+
title: 'Easy to Extend',
14+
Svg: require('@site/static/img/undraw_docusaurus_mountain.svg').default, description: (
1615
<>
17-
Docusaurus was designed from the ground up to be easily installed and
18-
used to get your website up and running quickly.
16+
Key value propositions are the dynamic extension model and the inclusion of central shared services (e.g. for Authorization), which enable the easy integration of UI capabilities from different sources.
1917
</>
2018
),
2119
},
2220
{
23-
title: 'Focus on What Matters',
21+
title: 'Simplifying High Quality Web Development',
2422
Svg: require('@site/static/img/undraw_docusaurus_tree.svg').default,
2523
description: (
2624
<>
27-
Docusaurus lets you focus on your docs, and we&apos;ll do the chores. Go
28-
ahead and move your docs into the <code>docs</code> directory.
29-
</>
30-
),
31-
},
32-
{
33-
title: 'Powered by React',
34-
Svg: require('@site/static/img/undraw_docusaurus_react.svg').default,
35-
description: (
36-
<>
37-
Extend or customize your website layout by reusing React. Docusaurus can
38-
be extended while reusing the same header and footer.
25+
Building portals and complex web based applications with enterprise qualities.
3926
</>
4027
),
4128
},
4229
];
4330

4431
function Feature({title, Svg, description}: FeatureItem) {
4532
return (
46-
<div className={clsx('col col--4')}>
33+
<div className={clsx('col col--6')}>
4734
<div className="text--center">
4835
<Svg className={styles.featureSvg} role="img" />
4936
</div>

0 commit comments

Comments
 (0)