blob: 9b25d7e8833d7537be003783273d252ab7de4c25 (
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
31
32
33
|
import React, { Component } from 'react';
export default class Hero extends Component {
render() {
return(
<React.Fragment>
<div className="hero">
<div className="header">
<img className="wow fadeInUp" data-wow-delay="1s"
src="https://web.archive.org/web/20090830171432im_/http://geocities.com/gapc/lgm-nosmovimos.gif"
alt="lost gif" />
<br /><br />
<h6 className="wow fadeInUp" data-wow-delay="1.2s">wow, you seem to be <span style={{"letterSpacing": "4px", "fontStyle": "italic", "fontWeight": "bold"}}>lost</span> ...</h6>
<br />
<center>
<a href="/">
<center>
<img className="wow fadeInUp" data-wow-delay="1s"
src="https://web.archive.org/web/20091021193614/http://www.geocities.com/moz_compilation/homeswrl_e0.gif"
alt="home gif" />
</center>
</a>
</center>
</div>
</div>
{ /* <div className="scroll-down"></div> */ }
</React.Fragment>
)
}
}
|