-
Notifications
You must be signed in to change notification settings - Fork 60
/
Copy pathcollaboration.js
140 lines (135 loc) · 3.8 KB
/
collaboration.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
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
import "../styles/contact.css";
import Customnav from "../layout/customnavbar";
import {
FaLinkedin,
FaGithubSquare,
FaTwitterSquare,
FaYoutube,
FaTelegram,
} from "react-icons/fa";
import useForm from '../hooks/useForm'
import validator from '../utilities/validator'
// import { Card } from "react-bootstrap";
function Collaboration() {
return ( <
div className = "contact" >
<
Customnav color = "#01bfd9"
height = "50px"
padding = "5vh" / >
<
div className = "contact__Packet" >
<
h1 > Contact Us < /h1> <
div className = "contact__container" >
<
div className = "contactContainer__left" >
<
div className = "contactContainer__left-info" >
<
h4 > Contact Information < /h4> <
p > Lorem ipsum dolor sit amet consectetur adipisicing elit.Aspernatur magnam quis autem inventore laboriosam dicta dolorem error ea, suscipit nobis ut, similique velit vitae explicabo. < /p> < /
div > <
div className = "contactContainer__leftIcons" >
<
a href = "https://github.com/codeflow201"
target = "_blank"
rel = "noreferrer"
className = 'contactContainer__leftIcon' >
<
FaGithubSquare className = 'contact__icon'
size = { 23.5 }
/> < /
a > <
a href = "https://www.linkedin.com/company/codefloworg/"
target = "_blank"
rel = "noreferrer"
className = 'contactContainer__leftIcon' >
<
FaLinkedin className = 'contact__icon'
size = { 23.5 }
/> < /
a > <
a href = "https://twitter.com/codefloworg"
target = "_blank"
rel = "noreferrer"
className = 'contactContainer__leftIcon' >
<
FaTwitterSquare className = 'contact__icon'
size = { 23.5 }
/> < /
a > <
a href = "https://www.youtube.com/channel/UCIsECRBRWOalTC51co-tJWg"
target = "_blank"
rel = "noreferrer"
className = 'contactContainer__leftIcon' >
<
FaYoutube className = 'contact__icon'
size = { 23.5 }
/> < /
a > <
a href = "https://t.me/joinchat/FdJhyMumJK5sryCv"
target = "_blank"
rel = "noreferrer"
className = 'contactContainer__leftIcon' >
<
FaTelegram className = 'contact__icon'
size = { 23.5 }
/> < /
a > <
/div> < /
div > <
form action = "https://formcarry.com/s/S2thQbCqEvW"
method = "POST" >
<
div className = "form__first" >
<
div className = "form__first-group" >
<
label > First Name < /label> <
input name = 'firstname'
type = "text" / >
<
/div> <
div className = "form__first-group" >
<
label > Last Name < /label> <
input name = 'lastname'
type = "text" / >
<
/div> < /
div > <
div className = "form__first" >
<
div className = "form__first-group" >
<
label > E - Mail < /label> <
input name = 'email'
type = "email" / >
<
/div> <
div className = "form__first-group" >
<
label > Phone - No < /label> <
input name = 'phone'
type = "tel" / >
<
/div> < /
div > <
div className = "form__first" >
<
div className = "form__first-group" >
<
label > Message < /label> <
textarea name = 'message' > < /textarea> < /
div > <
/div> <
button type = 'submit'
className = 'form__btn' > Submit < /button> < /
form > <
/div> < /
div > <
/div>
);
}
export default Collaboration;