-
Notifications
You must be signed in to change notification settings - Fork 2
/
contact.html
294 lines (281 loc) · 15 KB
/
contact.html
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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1, user-scalable=no">
<title>Contact Us | Ubix Agency</title>
<meta name="description" content="Connect with us to discuss innovative solutions for your digital projects." />
<link rel="stylesheet" href="css/global.css">
<link rel="stylesheet" href="css/menu.css">
<link rel="stylesheet" href="css/loader.css">
<link rel="stylesheet" href="css/home.css">
<link rel="stylesheet" href="css/about.css">
<link rel="stylesheet" href="css/services.css">
<link rel="stylesheet" href="css/team.css">
<link rel="stylesheet" href="css/contact.css">
<script src="js/pkgs/barba.umd.js"></script>
<script src="js/pkgs/lodash.min.js"></script>
<script src="js/pkgs/revealer.iife.js"></script>
<script src="js/pkgs/gsap.min.js"></script>
<script src="js/pkgs/TweenMax.min.js"></script>
<script src="js/pkgs/anime.min.js"></script>
<script src="js/pkgs/tailwindcss.min.js"></script>
</head>
<body data-barba="wrapper">
<div class="navbar">
<a href="/index.html" class="logo__btn">UBIX</a>
<div class="menu__itms">
<a href="index.html">home</a>
<a href="about.html">about</a>
<a href="services.html">services</a>
<a href="team.html">team</a>
<a href="contact.html">contact</a>
</div>
<button class="menu__btn">menu</button>
</div>
<div id="loader-container"></div>
<div id="menu-container"></div>
<script>
function loadComponent(htmlFile, containerId, scriptFile) {
fetch(htmlFile)
.then(response => response.text())
.then(data => {
document.getElementById(containerId).innerHTML = data;
const script = document.createElement("script");
script.src = scriptFile;
document.body.appendChild(script);
})
.catch(error => console.error(`Error loading ${htmlFile}:`, error));
}
loadComponent("loader.html", "loader-container", "js/loader.js");
loadComponent("menu.html", "menu-container", "js/menu.js");
</script>
<main data-barba="container" data-barba-namespace="contact">
<section id="section1">
<video id="video" class="w-full h-full object-contain" autoplay loop muted>
<source src="./assets/video/cube.mp4" type="video/mp4" />
</video>
<div id="content" class="hero-marquee">
Any project in mind
</div>
<div id="content"
class="absolute w-full bottom-0 p-[1rem] md:p-[2rem] flex gap-8 flex-col md:flex-row md:items-end justify-between">
<div>
<p class="pb-1 text-lg text-center md:text-left text-gray-500">
Tell us with that you're looking to achieve
</p>
<div class="w-fit mx-auto md:mx-0">
<button id="next0" class="text-white underline underline-offset-8 uppercase">Start your project
</id="next4">
</div>
</div>
<div class="flex flex-col md:ml-auto">
<p class="pb-1 text-lg text-center md:text-right text-gray-500">Contact us directly</p>
<a href="tel:+918910503408" class="text-lg text-center md:text-right text-white">+91 8910503408</a>
<a href="mailto:[email protected][email protected],[email protected]&subject=Project%20Discussion&body=Hello%20Ubix%20team!"
target="_blank" rel="noopener noreferrer"
class="text-lg text-center md:text-right text-white">[email protected]</a>
</div>
</div>
</section>
<section id="section2" class="h-[100dvh] w-screen px-[1rem] sm:px-[2rem] py-0 md:p-10 overflow-auto">
<div class="mx-auto max-w-[1024px] h-full py-[6rem] flex flex-col justify-between">
<div>
<h1 class="text-black text-4xl leading-tight overflow-hidden">
<span>Before we start,</span>
</h1>
<h1 class="text-black text-4xl leading-tight overflow-hidden">
<span>What is your name?</span>
</h1>
</div>
<div class="flex flex-col md:flex-row items-center gap-4">
<input id="firstNameInput"
class="w-full border-b border-gray-500 placeholder-gray-500 text-2xl outline-none bg-transparent py-3"
type="text" placeholder="Your first name" />
<input id="lastNameInput"
class="w-full border-b border-gray-500 placeholder-gray-500 text-2xl outline-none bg-transparent py-3"
type="text" placeholder="Your last name" />
</div>
<div class="flex items-center gap-8">
<div id="back1" class="flex items-center space-x-2">
<button class="text-black font-semibold underline underline-offset-8 uppercase">Go
back</button>
</div>
<div id="next1">
<button
class="text-black font-semibold underline underline-offset-8 uppercase">Continue</button>
</div>
</div>
</div>
</section>
<section id="section3" class="h-[100dvh] w-screen px-[1rem] sm:px-[2rem] py-0 md:p-10 overflow-auto">
<div
class="mx-auto max-w-[1024px] sm:h-full py-[6rem] grid grid-flow-row gap-20 sm:flex sm:flex-col sm:justify-between">
<div>
<h1 class="text-black text-4xl leading-tight overflow-hidden">
<span id="user">Nice to meet you!</span>
</h1>
<h1 class="text-black text-4xl leading-tight overflow-hidden">
<span>What service interests you?</span>
</h1>
</div>
<div>
<div class="w-fit flex flex-wrap items-center gap-4">
<button id="btn" value="UI/UX Design"
class="service-btn py-3 px-6 sm:text-lg border border-gray-500 rounded">
UI/UX Design
</button>
<button id="btn" value="Graphic Design"
class="service-btn py-3 px-6 sm:text-lg border border-gray-500 rounded">
Graphic Design
</button>
<button id="btn" value="Web Development"
class="service-btn py-3 px-6 sm:text-lg border border-gray-500 rounded">
Web Development
</button>
<button id="btn" value="Logo and Branding"
class="service-btn py-3 px-6 sm:text-lg border border-gray-500 rounded">
Logo & Branding
</button>
<button id="btn" value="Motion Graphics"
class="service-btn py-3 px-6 sm:text-lg border border-gray-500 rounded">
Motion Graphics
</button>
<button id="btn" value="Packaging Design"
class="service-btn py-3 px-6 sm:text-lg border border-gray-500 rounded">
Packaging Design
</button>
<button id="btn" value="Product Design"
class="service-btn py-3 px-6 sm:text-lg border border-gray-500 rounded">
Product Design
</button>
<button id="btn" value="Illustration"
class="service-btn py-3 px-6 sm:text-lg border border-gray-500 rounded">
Illustration
</button>
<button id="btn" value="Photography"
class="service-btn py-3 px-6 sm:text-lg border border-gray-500 rounded">
Photography
</button>
</div>
<div class="mt-4">
<input type="text" id="custom_service" placeholder="Other services in mind"
class="w-full sm:w-auto border-b border-gray-500 placeholder-gray-500 text-xl outline-none bg-transparent py-2">
</div>
</div>
<div class="flex items-center gap-8">
<div id="back2">
<button class="text-black font-semibold underline underline-offset-8 uppercase">Go
back</button>
</div>
<div id="next2">
<button
class="text-black font-semibold underline underline-offset-8 uppercase">Continue</button>
</div>
</div>
</div>
</section>
<section id="section4" class="h-[100dvh] w-screen px-[1rem] sm:px-[2rem] py-0 md:p-10 overflow-auto">
<div class="mx-auto max-w-[1024px] h-full py-[6rem] flex flex-col justify-between">
<div>
<h1 class="text-black text-4xl leading-tight overflow-hidden">
<span>Let's talk budget</span>
</h1>
<h1 class="text-black text-4xl leading-tight overflow-hidden">
<span>What is yours?</span>
</h1>
</div>
<div>
<div class="w-fit flex flex-wrap items-center gap-4">
<button id="btn" value="Less than $1k"
class="budget-btn py-3 px-6 sm:text-lg border border-gray-500 rounded">
Less than $1k
</button>
<button id="btn" value="$1-10k"
class="budget-btn py-3 px-6 sm:text-lg border border-gray-500 rounded">
$1-10k
</button>
<button id="btn" value="$11-20k"
class="budget-btn py-3 px-6 sm:text-lg border border-gray-500 rounded">
$11-20k
</button>
<button id="btn" value="$21-50k"
class="budget-btn py-3 px-6 sm:text-lg border border-gray-500 rounded">
$21-50k
</button>
<button id="btn" value="More than $50k+"
class="budget-btn py-3 px-6 sm:text-lg border border-gray-500 rounded">
More than $50k+
</button>
</div>
<div class="mt-4">
<input type="text" id="custom_budget" placeholder="Other budget in mind"
class="w-full sm:w-auto border-b border-gray-500 placeholder-gray-500 text-xl outline-none bg-transparent py-2">
</div>
</div>
<div class="flex items-center gap-8">
<div id="back3">
<button class="text-black font-semibold underline underline-offset-8 uppercase">Go
back</button>
</div>
<div id="next3">
<button
class="text-black font-semibold underline underline-offset-8 uppercase">Continue</button>
</div>
</div>
</div>
</section>
<section id="section5" class="h-[100dvh] w-screen px-[1rem] sm:px-[2rem] py-0 md:p-10 overflow-auto">
<div class="mx-auto max-w-[1024px] h-full py-[6rem] flex flex-col justify-between">
<div>
<h1 class="text-black text-4xl leading-tight overflow-hidden">
<span>Finally,</span>
</h1>
<h1 class="text-black text-4xl leading-tight overflow-hidden">
<span>Provide your contact detail.</span>
</h1>
</div>
<div class="flex flex-col md:flex-row items-center gap-4">
<input id="emailInput"
class="w-full border-b border-gray-500 placeholder-gray-500 text-2xl outline-none bg-transparent py-3"
type="text" placeholder="Your email address" />
<input id="contactNumberInput"
class="w-full border-b border-gray-500 placeholder-gray-500 text-2xl outline-none bg-transparent py-3"
type="text" placeholder="Your contact number" />
</div>
<div class="flex items-center gap-8">
<div id="back4" class="flex items-center space-x-2">
<button class="text-black font-semibold underline underline-offset-8 uppercase">Go
back</button>
</div>
<div id="next4" class="w-[80px] flex items-center justify-center">
<button id="continueButton"
class="text-black font-semibold underline underline-offset-8 uppercase flex items-center gap-2">
<span id="continueText">Continue</span>
<span id="loadingSpinner"
class="hidden w-4 h-4 border-t-2 border-gray-900 rounded-full animate-spin"></span>
</button>
</div>
</div>
</div>
</section>
<section id="section6" class="h-[100dvh] w-screen px-[1rem] sm:px-[2rem] py-0 md:p-10 overflow-auto">
<div class="mx-auto max-w-[1024px] h-full py-[6rem] flex flex-col justify-between">
<div>
<h1 class="text-black text-4xl leading-tight overflow-hidden">
<span>Thank you!</span>
</h1>
<h1 class="text-black text-4xl leading-tight overflow-hidden">
<span>We will contact you shortly!</span>
</h1>
</div>
<button id="next5" class="w-fit text-black font-semibold underline underline-offset-8 uppercase">
Go back to home page
</button>
</div>
</section>
</main>
<script src="js/contact.js"></script>
<script src="js/page.js"></script>
</body>
</html>