@@ -2,23 +2,37 @@ import React from 'react';
22
33import NavMain from './NavMain' ;
44import PageFooter from './PageFooter' ;
5+ import Grid from '../../src/Grid' ;
6+ import Alert from '../../src/Alert' ;
7+ import Glyphicon from '../../src/Glyphicon' ;
58
69const HomePage = React . createClass ( {
710 render : function ( ) {
811 return (
9- < div >
10- < NavMain activePage = "home" />
12+ < div >
13+ < NavMain activePage = "home" />
1114
12- < main className = "bs-docs-masthead" id = "content" role = "main" >
13- < div className = "container" >
14- < span className = "bs-docs-booticon bs-docs-booticon-lg bs-docs-booticon-outline" > </ span >
15- < p className = "lead" > The most popular front-end framework, rebuilt for React.</ p >
16- </ div >
17- </ main >
15+ < main className = "bs-docs-masthead" id = "content" role = "main" >
16+ < div className = "container" >
17+ < span className = "bs-docs-booticon bs-docs-booticon-lg bs-docs-booticon-outline" > </ span >
18+ < p className = "lead" > The most popular front-end framework, rebuilt for React.</ p >
19+ </ div >
20+ </ main >
1821
19- < PageFooter />
20- </ div >
21- ) ;
22+ < Grid >
23+ < Alert bsStyle = 'danger' >
24+ < Glyphicon glyph = 'warning-sign' /> The project is under active
25+ development, and APIs will change. Check out the < a
26+ href = 'https://github.com/react-bootstrap/react-bootstrap/wiki#100-roadmap' > 1.0.0
27+ Roadmap</ a > and < a
28+ href = 'https://github.com/react-bootstrap/react-bootstrap/blob/master/CONTRIBUTING.md' > Contributing
29+ Guidelines</ a > to see where you can help out.
30+ </ Alert >
31+ </ Grid >
32+
33+ < PageFooter />
34+ </ div >
35+ ) ;
2236 }
2337} ) ;
2438
0 commit comments