diff options
| author | 8cy <[email protected]> | 2020-10-12 19:50:30 -0700 |
|---|---|---|
| committer | 8cy <[email protected]> | 2020-10-12 19:50:30 -0700 |
| commit | c87d894d01b789f7953f558ad5cc68080c0f8b29 (patch) | |
| tree | 1f42fa39ea03d1e4ccd92b56b4758b3fe783eee5 /src/components/project/ProjectEndAll.js | |
| download | me-c87d894d01b789f7953f558ad5cc68080c0f8b29.tar.xz me-c87d894d01b789f7953f558ad5cc68080c0f8b29.zip | |
woops i forgot to commit these files lul
Diffstat (limited to 'src/components/project/ProjectEndAll.js')
| -rw-r--r-- | src/components/project/ProjectEndAll.js | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/src/components/project/ProjectEndAll.js b/src/components/project/ProjectEndAll.js new file mode 100644 index 0000000..56680ac --- /dev/null +++ b/src/components/project/ProjectEndAll.js @@ -0,0 +1,42 @@ +import React, { Component } from 'react'; +import PropTypes from 'prop-types'; + +export default class ProjectEndAll extends Component { + render() { + return( + <React.Fragment> + <div className="whitespace"></div> + + <h3 className="mobile-txt2 wow fadeInUp" data-wow-delay="1.2s">{this.props.projectData.title}</h3> + <div className="row"> + <div className="col-lg-5"></div> + + { /* graphic3 */ } + <div className={"col-lg-6 project " + this.props.projectClass + " wow fadeInUp"} data-wow-delay="1.4s" + onClick={() => window.location.href = this.props.projectData.redirect} + style={{ + background: "url(" + this.props.projectData.image + ") no-repeat 50% 50%", + backgroundSize: "cover" + }}> + </div> + + <div className="col-lg-1"></div> + </div> + <br /> + + <div className="row"> + <div className="col-lg-5"></div> + <div className="col-lg-5"> + <h4 className="wow fadeInUp" data-wow-delay="1.6s">{this.props.projectData.title}</h4> + </div> + <div className="col-lg-5"></div> + </div> + </React.Fragment> + ) + } +} + +ProjectEndAll.propTypes = { + projectData: PropTypes.object, + projectClass: PropTypes.string +}
\ No newline at end of file |