-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcontact.js
More file actions
59 lines (57 loc) · 2.11 KB
/
contact.js
File metadata and controls
59 lines (57 loc) · 2.11 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
52
53
54
55
56
57
58
59
import React from "react"
import Layout from "../components/layout"
const ContactPage = ({ location }) => (
<Layout location={location}>
<section className="page-section cta">
<div className="container">
<div className="row">
<div className="col-xl-9 mx-auto">
<div className="cta-inner text-center rounded">
<h2 className="section-heading mb-5">
<span className="section-heading-lower">Talk to me!</span>
</h2>
<p>
I might be an Introvert, but I love talking to about anything
from new possibilities and innovations in software development
to metal music, or from the comic books and movies to the
meaning and purpose of life!
</p>
<br />
<p className="mb-0">
<small>
<em>The most reliable form of communication - Emails!</em>
</small>
<br />
agrawadv@mail.uc.edu <br /> devagrawal09@gmail.com
</p>
<br />
<p className="mb-0">
<small>
<em>Check out my work and stories!</em>
</small>
<br />
<a href="https://github.com/devagrawal09/">Github</a> <br />
<a href="https://www.linkedin.com/in/dev-agrawal-88449b157/">
LinkedIn
</a>{" "}
<br />
<a href="https://medium.com/@devagrawal09">Medium</a>
</p>
<br />
<p className="mb-0">
<small>
<em>Social media ftw!</em>
</small>
<br />
<a href="https://twitter.com/dadevil99/">Twitter</a> <br />
<a href="https://www.facebook.com/dadevil09">Facebook</a> <br />
<a href="https://www.instagram.com/dadevil_666/">Instagram</a>
</p>
</div>
</div>
</div>
</div>
</section>
</Layout>
)
export default ContactPage