blob: 572b37e8576d6912ba5c3bc2f649846b1cc13c5d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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>
)
}
}
|