Skip to content

Commit 99a224a

Browse files
committed
Add text for mappers
1 parent d6558db commit 99a224a

File tree

1 file changed

+11
-4
lines changed

1 file changed

+11
-4
lines changed

packages/react-renderer-demo/src/app/src/components/landing-page/landing-page-cards.js

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -99,19 +99,19 @@ const buildFeatures = [
9999
Icon: LocalLibraryIcon
100100
},
101101
{
102-
text: 'Validation - basic types provides, supports async validation!',
102+
text: 'Validation - basic types are provided, supports async validators!',
103103
Icon: VerifiedUserIcon
104104
},
105105
{
106-
text: 'Conditions - hide and modify fields according to other values!',
106+
text: 'Conditions - hide and modify fields according to values of other fields!',
107107
Icon: PlaylistAddCheckIcon
108108
},
109109
{
110-
text: 'Fully customizable - you can use any components!',
110+
text: 'Fully customizable - you can use any components you are using right now!',
111111
Icon: EditAttributesIcon
112112
},
113113
{
114-
text: 'Online editor - you can build your form with DnD!',
114+
text: 'Online editor - you can build your form using comfy DnD!',
115115
Icon: CreateIcon
116116
}
117117
].map(({ text, Icon, href, link }, idx) => (
@@ -243,6 +243,13 @@ const LandingPageCards = () => {
243243
<PF3Logo style={{ fontSize: 100 }} />
244244
</a>
245245
</Grid>
246+
<Grid item xs={12} md={8}>
247+
<Typography variant="body2" gutterBottom>
248+
This list represents a set of provided mappers. Each mapper brings all basic form components from its design system. You can
249+
immediately use form inputs such as text fields, selects, radios, checkboxes or wizards. However, this selection does not limit you as
250+
integrating custom coponents is simple as it can be - all it takes is just one hook.
251+
</Typography>
252+
</Grid>
246253
</Grid>
247254
</Paper>
248255
</Grid>

0 commit comments

Comments
 (0)