-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathContact.js
53 lines (51 loc) · 1.64 KB
/
Contact.js
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
import "./style.css";
const Contact = () => {
return (
<div>
<h1 className="baslik2">İletişim</h1>
<footer>
<h2>Footer</h2>
<div className="form1">
<div className="maindiv1">
<h4>Faydalandığım Siteler</h4>
<a target="_blank" href="https://academy.patika.dev/">
<img
className="siteler"
src={require("./images/dev.jpg")}
alt=""
/>
</a>
<a target="_blank" href="https://www.youtube.com">
{" "}
<img
className="siteler"
src={require("./images/youtube.png")}
alt=""
/>
</a>
<a target="_blank" href="ttps://www.udemy.com">
<img
className="siteler"
src={require("./images/udemy.png")}
alt=""
/>
</a>
</div>
<div className="maindiv2">
<h4>Sosyal Medya</h4>
<a target={"_blank"} href="https://www.github.com/ardayslky">
<img src={require("./images/github.png")} alt="" />
</a>
<a target={"_blank"} href="https://www.instagram.com/yesilkayarda">
<img src={require("./images/instagram.jpg")} alt="" />
</a>
<a target={"_blank"} href="https://1000kitap.com/ardayesilkaya">
<img src={require("./images/1k.jpg")} alt="" />
</a>
</div>
</div>
</footer>
</div>
);
};
export default Contact;