-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathContact.jsx
81 lines (73 loc) · 2.9 KB
/
Contact.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
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
import Image from "next/image";
import { contactItems } from "@/data/contact";
import ContactForm from "./ContactForm";
import Email from "./Email";
export default function Contact() {
return (
<div className="bostami-page-area z-index-3">
<div className="container">
<div className="bostami-page-wrap pt-60 pl-80 pr-80">
<div className="page-tilte-2-wrap">
<div className="row">
<div className="col-12">
<div className="bostami-page-title-wrap mb-40">
<h2 className="page-title">contact</h2>
</div>
</div>
</div>
</div>
<div className="bostami-contact-2-wrap">
<div className="row">
<div className="col-xl-4 col-lg-12">
<div className="bostami-contact-2-item-wrap mb-60">
<div className="row">
{contactItems.map((elm, i) => (
<div key={i} className="col-xl-12 col-lg-6">
<div
className={`bostami-contact-item ${elm.bgColor} bg-prink mb-30`}
>
<div className="icon">
<Image
width={40}
height={40}
src={elm.iconSrc}
alt="contact"
/>
</div>
<div className="text">
<h5 className="title">{elm.title} :</h5>
{elm.hidden ?
<Email user={elm.user} domain={elm.domain} />
:
elm.content.map((elm2, i2) => (
<span key={i2}>{elm2}</span>
))
}
</div>
</div>
</div>
))}
</div>
</div>
</div>
<div className="col-xl-8 col-lg-12">
<div className="contact-area bg-light-white-2 mb-60">
<h5 className="contact-title">
Je suis toujours ouvert à de nouvelles discussions pour un projet de développement web,
</h5>
<h5 className="contact-title-b">d'applications mobiles, de design ou de partenariats.</h5>
{/* <ContactForm/> */}
</div>
</div>
</div>
</div>
<div className="footer-copyright text-center pt-25 pb-25 bg-light-white-2 border-redius-20">
<span>
© {new Date().getFullYear()} Tous droits réservés par Francois Aubeut.
</span>
</div>
</div>
</div>
</div>
);
}