-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHome.jsx
29 lines (28 loc) · 1.1 KB
/
Home.jsx
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
import React from "react";
const Home = () => {
return (<>
<div id="hom" className="Home">
<div className="intro">
<h1>Vineet Jadhav</h1>
<div>
<p>I'm passionate <span id="spin"></span></p>
</div>
<div className="social_media">
<a href="https://twitter.com/vineet7875">
<img src="\twitter.png" className="socialimg" />
</a>
<a href="https://www.instagram.com/thisvineet/">
<img src="\instagram.png" className="socialimg" />
</a>
<a href="https://www.linkedin.com/in/vineet-jadhav-577a531b4/">
<img src="\linkdin.png" className="socialimg" />
</a>
<a href="https://github.com/Vineet7875">
<img src="\git2.jpg" id="git" className="socialimg" />
</a>
</div>
</div>
</div>
</>)
}
export default Home