-
-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathBio.js
More file actions
42 lines (38 loc) · 920 Bytes
/
Bio.js
File metadata and controls
42 lines (38 loc) · 920 Bytes
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
import React from 'react'
// Import typefaces
import 'typeface-montserrat'
import 'typeface-merriweather'
// import profilePic from './profile-pic.jpg'
import { rhythm } from '../utils/typography'
class Bio extends React.Component {
render() {
return (
<div
style={{
display: 'flex',
marginBottom: rhythm(1.5),
}}
>
{/* <img
src={profilePic}
alt={`Elangovan`}
style={{
marginRight: rhythm(1 / 2),
marginBottom: 0,
borderRadius: '50%',
width: rhythm(2),
height: rhythm(2),
}}
/> */}
<p>
Personal blog by{' '}
<a href="https://twitter.com/im_leaf" target="_blank">
Elangovan
</a>
.<br></br>I learn by breaking stuff (mostly code).
</p>
</div>
)
}
}
export default Bio