-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.jsx
More file actions
42 lines (33 loc) · 1.32 KB
/
Copy pathApp.jsx
File metadata and controls
42 lines (33 loc) · 1.32 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
function App() {
return (
<main className="container flex flex--center " id="main">
<section className="card absolute flex flex--center flex--column">
<div className="avatar avatar--md">
<img alt="Codepraycode's github avatar" src="https://avatars.githubusercontent.com/u/51521181?s=400&u=4ec6b15bc10506a890bcc35cd6d8bf4e67cb50c7&v=4" />
</div>
<h1 className="line-h-1 fs-500 fw-500 uppercase">Codepraycode!</h1>
<ul className="socials" role="list">
<li>
<a href="https://github.com/codepraycode" title="@codepraycode on Github" data-medium="github">
<span className="sr-only">Github</span>
</a>
</li>
<li>
<a href="https://www.linkedin.com/in/codepraycode" title="@codepraycode on Linkedin" data-medium="linkedin">
<span className="sr-only">Linkedin</span>
</a>
</li>
<li>
<a href="https://twitter.com/codepraycode" title="@codepraycode on Twitter" data-medium="twitter">
<span className="sr-only">Twitter</span>
</a>
</li>
</ul>
<a className="btn" href="https://shrtco.de/rE8SdR" role="button">
View My CV
</a>
</section>
</main>
)
}
export default App