You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -77,7 +72,7 @@ class HomeSplash extends React.Component {
77
72
constlanguage=this.props.language||'';
78
73
return(
79
74
<SplashContainer>
80
-
<Logoimg_src={imgUrl('docusaurus.svg')}/>
75
+
<Logoimg_src={imgUrl('logo.svg')}/>
81
76
<divclassName="inner">
82
77
<ProjectTitle/>
83
78
<PromoSection>
@@ -104,68 +99,22 @@ const Block = props => (
104
99
);
105
100
106
101
constFeatures=()=>(
107
-
<Blocklayout="fourColumn">
102
+
<Blocklayout="threeColumn"align="left">
108
103
{[
109
104
{
110
-
content: 'This is the content of my feature',
111
-
image: imgUrl('docusaurus.svg'),
112
-
imageAlign: 'top',
113
-
title: 'Feature One',
114
-
},
115
-
{
116
-
content: 'The content of my second feature',
117
-
image: imgUrl('docusaurus.svg'),
118
-
imageAlign: 'top',
119
-
title: 'Feature Two',
105
+
content:
106
+
'There is just one build dependency. It uses Webpack, Babel, ESLint, and other amazing projects, but provides a cohesive curated experience on top of them.',
107
+
title: 'One dependency',
120
108
},
121
-
]}
122
-
</Block>
123
-
);
124
-
125
-
constFeatureCallout=()=>(
126
-
<div
127
-
className="productShowcaseSection paddingBottom"
128
-
style={{textAlign: 'center'}}
129
-
>
130
-
<h2>Feature Callout</h2>
131
-
<MarkdownBlock>These are features of this project</MarkdownBlock>
132
-
</div>
133
-
);
134
-
135
-
constLearnHow=()=>(
136
-
<Blockbackground="light">
137
-
{[
138
109
{
139
-
content: 'Talk about learning how to use this',
140
-
image: imgUrl('docusaurus.svg'),
141
-
imageAlign: 'right',
142
-
title: 'Learn How',
110
+
content:
111
+
"You don't need to configure anything. Reasonably good configuration of both development and production builds is handled for you so you can focus on writing code.",
112
+
title: 'No configuration required',
143
113
},
144
-
]}
145
-
</Block>
146
-
);
147
-
148
-
constTryOut=()=>(
149
-
<Blockid="try">
150
-
{[
151
-
{
152
-
content: 'Talk about trying this out',
153
-
image: imgUrl('docusaurus.svg'),
154
-
imageAlign: 'left',
155
-
title: 'Try it Out',
156
-
},
157
-
]}
158
-
</Block>
159
-
);
160
-
161
-
constDescription=()=>(
162
-
<Blockbackground="dark">
163
-
{[
164
114
{
165
-
content: 'This is another description of how this project is useful',
166
-
image: imgUrl('docusaurus.svg'),
167
-
imageAlign: 'right',
168
-
title: 'Description',
115
+
content:
116
+
'You can “eject” to a custom setup at any time. Run a single command, and all the configuration and build dependencies will be moved directly into your project, so you can pick up right where you left off.',
117
+
title: 'No lock-in',
169
118
},
170
119
]}
171
120
</Block>
@@ -180,10 +129,6 @@ class Index extends React.Component {
0 commit comments