-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlandingpage.js
More file actions
51 lines (43 loc) · 2.14 KB
/
landingpage.js
File metadata and controls
51 lines (43 loc) · 2.14 KB
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
import React, { Component } from 'react';
import { Grid, Cell } from 'react-mdl';
class Landing extends Component{
render(){
return(
<div style={{width: '100%', margin: 'auto'}}>
<Grid className="landing-grid">
<Cell col={12}>
<img
src="https://www.shareicon.net/download/2015/09/18/103157_man_512x512.png"
alt="avatar"
className="avatar-img"
/>
<div className="banner-text">
<h1>Full Stack Web Developer</h1>
<hr/>
<p>HTML/CSS | Bootstrap | Javascript | React | React Native | NaodeJS | Express | MongoDB</p>
<div className="social-links">
{/* LinkdIn */}
<a href="http://google.com" rel="noopener noreferrer" target="_blank">
<i className="fa fa-linkedin-square" arial-hidden="true"></i>
</a>
{/* Github */}
<a href="http://google.com" rel="noopener noreferrer" target="_blank">
<i className="fa fa-github-square" arial-hidden="true"></i>
</a>
{/* Freecodecamp */}
<a href="http://google.com" rel="noopener noreferrer" target="_blank">
<i className="fa fa-free-code-camp" arial-hidden="true"></i>
</a>
{/* Youtube */}
<a href="http://google.com" rel="noopener noreferrer" target="_blank">
<i className="fa fa-youtube-square" arial-hidden="true"></i>
</a>
</div>
</div>
</Cell>
</Grid>
</div>
);
}
}
export default Landing;