blob: 06885a3c0e80bca6363ac94d8468f69ffa009006 (
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
27
28
29
30
|
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 />
<img className="wow fadeInUp" data-wow-delay="1.5s"
src="https://web.archive.org/web/20091027135032/http://geocities.com/ikiteiruna_yume/coding.gif"
alt="matrix flowing" />
<br /><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>
)
}
}
|