diff options
| author | Fabian Mastenbroek <mail.fabianm@gmail.com> | 2021-05-09 11:21:51 +0200 |
|---|---|---|
| committer | Fabian Mastenbroek <mail.fabianm@gmail.com> | 2021-05-09 11:21:51 +0200 |
| commit | a0345ef9aac2138b6b78cdf72a168862e47a45da (patch) | |
| tree | 4a92d836ac7b0a2bdde4b678c7b6408b1e63b1f3 /opendc-web/opendc-web-ui/src/components | |
| parent | dceed47c17241a25b58437a9772cc418551ac30a (diff) | |
ui: Link to OpenDC 2.0 paper
Diffstat (limited to 'opendc-web/opendc-web-ui/src/components')
| -rw-r--r-- | opendc-web/opendc-web-ui/src/components/home/JumbotronHeader.js | 19 |
1 files changed, 15 insertions, 4 deletions
diff --git a/opendc-web/opendc-web-ui/src/components/home/JumbotronHeader.js b/opendc-web/opendc-web-ui/src/components/home/JumbotronHeader.js index 7b410679..6a9ea00c 100644 --- a/opendc-web/opendc-web-ui/src/components/home/JumbotronHeader.js +++ b/opendc-web/opendc-web-ui/src/components/home/JumbotronHeader.js @@ -1,17 +1,28 @@ import React from 'react' +import { Container, Jumbotron, Button } from 'reactstrap' import './JumbotronHeader.sass' const JumbotronHeader = () => ( <section className="jumbotron-header"> - <div className="container"> - <div className="jumbotron text-center"> + <Container> + <Jumbotron className="text-center"> <h1> Open<span className="dc">DC</span> </h1> <p className="lead">Collaborative Datacenter Simulation and Exploration for Everybody</p> <img src="img/logo.png" className="img-responsive mt-3" alt="OpenDC" /> - </div> - </div> + <p className="lead mt-5"> + <Button + tag="a" + target="_blank" + href="https://atlarge-research.com/pdfs/ccgrid21-opendc-paper.pdf" + color="warning" + > + Read about <strong>OpenDC 2.0</strong> <i className="fa fa-external-link" /> + </Button> + </p> + </Jumbotron> + </Container> </section> ) |
