-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.jsx
116 lines (107 loc) · 6.58 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
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
import { useState } from 'react';
import BannerLayout from '../components/Common/BannerLayout';
import { FaGithub, FaLinkedin, FaTwitter } from 'react-icons/fa'
import { SiUpwork } from 'react-icons/si'
import { HiMail, HiUser } from 'react-icons/hi'
import { BsChatTextFill } from 'react-icons/bs'
import Fiverr_Icon from '../components/Fiverr_Icon';
import Footer from '../components/Footer';
import { Modal } from 'antd';
const Contact = () => {
const [isOpen, setIsOpen] = useState(false)
return (
<BannerLayout>
<div className=" px-4 py-2">
<div className="my-6 text-Snow flex flex-col gap-y-5">
<h1 className='text-lg font-bold'>Contact Information</h1>
<div className="flex flex-col md:flex-row items-center gap-5 text-xs">
<div className="card_stylings w-full md:w-1/2 p-5 md:p-6 lg:p-8 flex flex-col gap-y-4">
<div className="flex justify-between items-center">
<span className='md:text-base'>Country:</span>
<span className='text-LightGray md:text-sm'>Romania</span>
</div>
<div className="flex justify-between items-center">
<span className='md:text-base'>City:</span>
<span className='text-LightGray md:text-sm'>Bucharest</span>
</div>
<div className="flex justify-between items-center">
<span className='md:text-base'>Company:</span>
<span className='text-LightGray md:text-sm'>Not yet</span>
</div>
</div>
<div className="card_stylings rounded-xl w-full md:w-1/2 p-5 md:p-6 lg:p-8 flex flex-col gap-y-4">
<div className="flex justify-between items-center">
<span className='md:text-base'>Email:</span>
<span className='text-LightGray text-sm'>sorin.mihailescu@outlook.com</span>
</div>
<div className="flex justify-between items-center">
<span className='md:text-base'>Linkedin:</span>
<span className='text-LightGray text-sm'>Sorin Mihailescu</span>
</div>
<div className="flex justify-between items-center">
<span className='md:text-base'>Phone:</span>
<span className='text-LightGray text-sm'>+40 720590096</span>
</div>
</div>
</div>
</div>
<div className="h-16 w-full card_stylings text-xl sm:text-3xl flex gap-x-8 sm:gap-x-16 items-center justify-center text-Snow">
<a className='hover:scale-125 ease-in-out duration-700' href="mailto:sorin.mihailescu@outlook.com" target='_blank' rel="noreferrer"><HiMail /></a>
<a className='hover:scale-125 ease-in-out duration-700' href="https://github.com/FarahTrip" target='_blank' rel="noreferrer"><FaGithub /></a>
<a className='hover:scale-125 ease-in-out duration-700' href="https://www.linkedin.com/in/mihailescu-sorin-daniel-46a370189/" target='_blank' rel="noreferrer"><FaLinkedin /></a>
<a className='hover:scale-125 ease-in-out duration-700 text-2xl sm:text-4xl mt-1' href="https://www.upwork.com/freelancers/~01f093b93e236391b2?viewMode=1" target='_blank' rel="noreferrer"><SiUpwork /></a>
</div>
<div className="my-12 w-full h-auto text-Snow">
<h1 className='text-lg font-bold'>Get In Touch</h1>
<div className="mt-4 py-8 px-8 bg-EveningBlack rounded-xl text-sm">
<div>
<div className="flex flex-col w-full">
<div className="userIcon relative mb-6">
<div id="icon" className="absolute inset-y-0 left-0 flex items-center pl-3 text-xl pointer-events-none">
<HiUser />
</div>
<input type="text" className="input_stylings" placeholder="Name" />
</div>
</div>
<div className="flex flex-col w-full">
<div className="mailIcon relative mb-6">
<div id="icon" className="absolute inset-y-0 left-0 flex items-center text-xl pl-3 pointer-events-none">
<HiMail />
</div>
<input type="text" className="input_stylings" placeholder="Email" />
</div>
</div>
<div className="flex flex-col w-full">
<div className="textIcon relative mb-6">
<div id="icon" className="absolute top-3 left-0 flex items-center text-lg pl-3 pointer-events-none">
<BsChatTextFill />
</div>
<textarea rows={6} cols={50} className="input_stylings" placeholder="Message" />
</div>
</div>
<div className="my-4">
<button onClick={() => setIsOpen(true)} className="button"> SEND MESSAGE </button>
</div>
</div>
</div>
</div>
</div>
{/* success modal */}
<Modal
className='card_stylings backdrop-blur-3xl drop-shadow-2xl'
// wrapClassName='bg-red-800'
centered
open={isOpen}
footer={null}
closable={false}
onOk={() => setIsOpen(false)}
onCancel={() => setIsOpen(false)}
>
<div className='flex flex-col items-center justify-center'>
<h1 className='text-[#7c02ff] font-bold text-2xl'>In Progress</h1> </div>
</Modal>
<Footer />
</BannerLayout>
)
}
export default Contact