|
1 | 1 | import React from 'react'; |
2 | 2 |
|
3 | | -import Grid from 'react-bootstrap/lib/Grid'; |
4 | | -import Alert from 'react-bootstrap/lib/Alert'; |
5 | | -import Glyphicon from 'react-bootstrap/lib/Glyphicon'; |
6 | | -import Label from 'react-bootstrap/lib/Label'; |
7 | | - |
8 | 3 | export default class HomePage extends React.Component { |
9 | 4 | render() { |
10 | 5 | return ( |
11 | | - <div> |
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" /> |
15 | | - <p className="lead"> |
16 | | - The most popular front-end framework, rebuilt for React. |
17 | | - </p> |
18 | | - </div> |
19 | | - </main> |
20 | | - |
21 | | - <Grid> |
22 | | - <Alert bsStyle="info"> |
23 | | - <p> |
24 | | - <Glyphicon glyph="warning-sign" /> React-Bootstrap currently |
25 | | - targets Bootstrap v3. We are actively working on Bootstrap v4 |
26 | | - support in{' '} |
27 | | - <a href="https://github.com/react-bootstrap/react-bootstrap/pull/2752"> |
28 | | - #2752 |
29 | | - </a> |
30 | | - . |
31 | | - </p> |
32 | | - </Alert> |
33 | | - <Alert bsStyle="warning"> |
34 | | - <p> |
35 | | - <Glyphicon glyph="bullhorn" /> We are actively working to reach a |
36 | | - 1.0.0 release, and we would love your help to get there. |
37 | | - </p> |
38 | | - <p> |
39 | | - <Glyphicon glyph="check" /> Check out the{' '} |
40 | | - <a href="https://github.com/react-bootstrap/react-bootstrap/wiki#100-roadmap"> |
41 | | - 1.0.0 roadmap |
42 | | - </a>{' '} |
43 | | - and{' '} |
44 | | - <a href="https://github.com/react-bootstrap/react-bootstrap/blob/master/CONTRIBUTING.md"> |
45 | | - contributing guidelines |
46 | | - </a>{' '} |
47 | | - to see where you can help out. |
48 | | - </p> |
49 | | - <p> |
50 | | - <Glyphicon glyph="sunglasses" /> A great place to start is any{' '} |
51 | | - <a |
52 | | - target="_blank" |
53 | | - rel="noopener noreferrer" |
54 | | - href="https://github.com/react-bootstrap/react-bootstrap/issues?q=is%3Aopen+is%3Aissue+label%3A%22help+wanted%22" |
55 | | - > |
56 | | - issue |
57 | | - </a>{' '} |
58 | | - with a <Label bsStyle="success">help-wanted</Label> label. |
59 | | - </p> |
60 | | - <p> |
61 | | - <Glyphicon glyph="ok" /> We are open to pull requests that address |
62 | | - bugs, improve documentation, enhance accessibility, add test |
63 | | - coverage, or bring us closer to feature parity with{' '} |
64 | | - <a |
65 | | - target="_blank" |
66 | | - rel="noopener noreferrer" |
67 | | - href="http://getbootstrap.com/" |
68 | | - > |
69 | | - Bootstrap |
70 | | - </a> |
71 | | - . |
72 | | - </p> |
73 | | - <p> |
74 | | - <Glyphicon glyph="user" /> We actively seek to invite frequent |
75 | | - pull request authors to join the organization.{' '} |
76 | | - <Glyphicon glyph="thumbs-up" /> |
77 | | - </p> |
78 | | - </Alert> |
79 | | - </Grid> |
80 | | - </div> |
| 6 | + <main className="bs-docs-masthead" id="content" role="main"> |
| 7 | + <div className="container"> |
| 8 | + <span className="bs-docs-booticon bs-docs-booticon-lg bs-docs-booticon-outline" /> |
| 9 | + <p className="lead"> |
| 10 | + The most popular front-end framework, rebuilt for React. |
| 11 | + </p> |
| 12 | + </div> |
| 13 | + </main> |
81 | 14 | ); |
82 | 15 | } |
83 | 16 | } |
0 commit comments