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/work/Hero.js | |
| download | me-c87d894d01b789f7953f558ad5cc68080c0f8b29.tar.xz me-c87d894d01b789f7953f558ad5cc68080c0f8b29.zip | |
woops i forgot to commit these files lul
Diffstat (limited to 'src/components/work/Hero.js')
| -rw-r--r-- | src/components/work/Hero.js | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/src/components/work/Hero.js b/src/components/work/Hero.js new file mode 100644 index 0000000..572b37e --- /dev/null +++ b/src/components/work/Hero.js @@ -0,0 +1,26 @@ +import React, { Component } from 'react'; + +export default class Hero extends Component { + render() { + return( + <div className="container"> + <div className="hero-content"> + <br /><br /> + + <div className="row"> + <div className="col-lg-8"> + <h3 className="wow fadeInUp" data-wow-delay="1s">projects.</h3> + <br /> + <p className="wow fadeInUp" data-wow-delay="1.2s"> + I usually do a couple little projects every now and then to exercise my skills. Here are a few. + </p> + <p className="wow fadeInUp" data-wow-delay="1.4s"> + Disclaimer: this page is under construction, along with the entirety of the project viewer feature. + </p> + </div> + </div> + </div> + </div> + ) + } +}
\ No newline at end of file |