-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprivacy-policy.html
More file actions
538 lines (482 loc) · 29.6 KB
/
Copy pathprivacy-policy.html
File metadata and controls
538 lines (482 loc) · 29.6 KB
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
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Privacy Policy — Tekpair</title>
<link rel="icon" type="image/png" href="assets/Tekpair.png">
<!-- Mona Sans Font -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@github/mona-sans@1.0.1/dist/Mona-Sans.css">
<!-- Tailwind CSS -->
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
theme: {
extend: {
fontFamily: {
sans: ['Manrope', 'sans-serif'],
mona: ['Mona Sans', 'Manrope', 'sans-serif'],
serif: ['Playfair Display', 'serif'],
},
colors: {
luxury: {
black: '#0f172a',
gold: '#0050CD',
slate: '#f8fafc',
gray: '#64748b'
}
}
}
}
}
</script>
<!-- Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap" rel="stylesheet">
<style>
body { font-family: 'Manrope', sans-serif; background-color: #fafafa; }
.font-serif { font-family: 'Playfair Display', serif; }
html { scroll-behavior: smooth; }
::selection { background: #0050CD; color: white; }
.glass-nav {
background: rgba(255, 255, 255, 0.9);
backdrop-filter: blur(16px);
border-bottom: 1px solid rgba(0, 80, 205, 0.1);
}
</style>
</head>
<body class="text-slate-900 antialiased">
<!-- Navigation -->
<nav class="glass-nav fixed w-full top-0 z-50 transition-all duration-300 border-b border-gray-100/50">
<div class="max-w-7xl mx-auto px-6 h-20 flex items-center justify-between font-mona">
<!-- Logo -->
<a href="landing.html" class="flex items-center gap-2 group">
<img src="assets/tekpair.svg" alt="Tekpair" class="h-15 w-auto group-hover:scale-105 transition-transform duration-300">
</a>
<!-- Center Navigation -->
<div class="hidden md:flex items-center space-x-8 text-[15px] font-medium text-slate-500">
<a href="landing.html#homeservices" class="hover:text-slate-900 transition-colors">Services</a>
<a href="landing.html#solutions" class="hover:text-slate-900 transition-colors">Solutions</a>
<a href="landing.html#how-it-works" class="hover:text-slate-900 transition-colors">How It Works</a>
<a href="landing.html#reviews" class="hover:text-slate-900 transition-colors">Customer Stories</a>
</div>
<!-- Right Actions -->
<div class="flex items-center gap-4">
<div class="hidden md:flex items-center gap-6">
<!-- Guest: Login + Provider -->
<div data-auth="guest" class="flex items-center gap-4">
<a href="login.html" class="text-sm font-bold text-slate-700 hover:text-[#0050CD] px-5 py-2.5 rounded-full hover:bg-blue-50/50 transition-all duration-300">
Login
</a>
<a href="login.html?mode=provider" class="relative group overflow-hidden bg-[#0050CD] text-white text-sm font-bold px-6 py-2.5 rounded-full shadow-[0_10px_20px_-10px_rgba(0,80,205,0.5)] hover:shadow-[0_20px_30px_-10px_rgba(0,80,205,0.4)] hover:-translate-y-0.5 transition-all duration-300 ring-4 ring-blue-50/50">
<span class="relative z-10">Become a Provider</span>
<div class="absolute inset-0 bg-gradient-to-r from-transparent via-white/10 to-transparent translate-x-[-100%] group-hover:translate-x-[100%] transition-transform duration-700"></div>
</a>
</div>
<!-- User: Avatar + Menu -->
<div data-auth="user" style="display: none;" class="flex items-center gap-4">
<div class="group relative">
<div class="flex items-center gap-3 cursor-pointer">
<span data-user-name class="font-medium text-slate-900 hidden sm:block">User</span>
<div class="w-10 h-10 rounded-full border border-gray-200 p-0.5 ring-2 ring-gray-100">
<img data-user-avatar src="" class="w-full h-full rounded-full object-cover">
</div>
</div>
<!-- Dropdown Menu -->
<div class="absolute right-0 top-full mt-2 w-48 bg-white rounded-xl shadow-xl border border-gray-100 py-1 hidden group-hover:block z-50 overflow-hidden text-left">
<div class="px-4 py-3 bg-gray-50/50 border-b border-gray-100">
<p class="text-xs font-semibold text-gray-500 uppercase tracking-wider">Account</p>
</div>
<a href="bookings.html" class="block px-4 py-2.5 text-sm text-gray-700 hover:bg-blue-50 hover:text-blue-600 transition-colors">My Bookings</a>
<div class="border-t border-gray-100 my-1"></div>
<a href="javascript:void(0)" onclick="logout()" class="block px-4 py-2.5 text-sm text-red-600 hover:bg-red-50 transition-colors font-medium">Sign Out</a>
</div>
</div>
</div>
</div>
<!-- Mobile Menu Button -->
<button class="md:hidden p-2 text-slate-600 hover:bg-slate-100 rounded-lg transition-colors">
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16" />
</svg>
</button>
</div>
</div>
</nav>
<!-- Main Content -->
<main class="pt-32 pb-20 px-6">
<div class="max-w-4xl mx-auto">
<!-- Hero Section -->
<div class="text-center mb-16">
<h1 class="text-5xl md:text-6xl font-extrabold text-[#0F172A] mb-6 font-serif">Privacy Policy</h1>
<p class="text-lg text-gray-600">Last updated: March 5, 2026</p>
</div>
<!-- Introduction -->
<section class="mb-12 bg-blue-50 rounded-2xl p-8">
<p class="text-gray-700 leading-relaxed">
At Tekpair, we are committed to protecting your privacy and ensuring the security of your personal information. This Privacy Policy explains how we collect, use, disclose, and safeguard your data when you use our platform and services.
</p>
</section>
<!-- Privacy Content -->
<div class="prose prose-lg max-w-none space-y-12">
<!-- Section 1 -->
<section>
<h2 class="text-3xl font-bold text-[#0F172A] mb-4">1. Information We Collect</h2>
<div class="text-gray-700 leading-relaxed space-y-4">
<div>
<h3 class="text-xl font-bold text-[#0F172A] mb-2">1.1 Personal Information</h3>
<p>When you create an account or use our services, we may collect:</p>
<ul class="list-disc pl-6 space-y-2 mt-2">
<li>Name, email address, and phone number</li>
<li>Profile picture and date of birth</li>
<li>Residential address and service location</li>
<li>Payment information (securely processed through third-party payment gateways)</li>
<li>Government-issued ID for service provider verification</li>
</ul>
</div>
<div>
<h3 class="text-xl font-bold text-[#0F172A] mb-2">1.2 Usage Information</h3>
<p>We automatically collect information about how you interact with our platform:</p>
<ul class="list-disc pl-6 space-y-2 mt-2">
<li>Device information (IP address, browser type, operating system)</li>
<li>Log data (access times, pages viewed, actions taken)</li>
<li>Location data (with your permission)</li>
<li>Cookies and similar tracking technologies</li>
</ul>
</div>
<div>
<h3 class="text-xl font-bold text-[#0F172A] mb-2">1.3 Service-Related Information</h3>
<ul class="list-disc pl-6 space-y-2">
<li>Booking details and service history</li>
<li>Reviews and ratings</li>
<li>Communications with service providers and support team</li>
<li>Photos or videos related to service requests</li>
</ul>
</div>
</div>
</section>
<!-- Section 2 -->
<section>
<h2 class="text-3xl font-bold text-[#0F172A] mb-4">2. How We Use Your Information</h2>
<div class="text-gray-700 leading-relaxed space-y-3">
<p>We use the collected information for the following purposes:</p>
<ul class="list-disc pl-6 space-y-2">
<li><strong>Service Delivery:</strong> To facilitate bookings, connect you with service providers, and process payments.</li>
<li><strong>Account Management:</strong> To create and manage your account, verify your identity, and provide customer support.</li>
<li><strong>Communication:</strong> To send booking confirmations, service updates, promotional offers, and platform notifications.</li>
<li><strong>Improvement:</strong> To analyze usage patterns, improve platform functionality, and enhance user experience.</li>
<li><strong>Safety & Security:</strong> To detect and prevent fraud, ensure platform security, and protect user safety.</li>
<li><strong>Legal Compliance:</strong> To comply with legal obligations, resolve disputes, and enforce our terms.</li>
</ul>
</div>
</section>
<!-- Section 3 -->
<section>
<h2 class="text-3xl font-bold text-[#0F172A] mb-4">3. Information Sharing and Disclosure</h2>
<div class="text-gray-700 leading-relaxed space-y-4">
<div>
<h3 class="text-xl font-bold text-[#0F172A] mb-2">3.1 With Service Providers</h3>
<p>We share necessary information with service providers to facilitate bookings, including your name, contact details, and service location.</p>
</div>
<div>
<h3 class="text-xl font-bold text-[#0F172A] mb-2">3.2 With Third-Party Service Partners</h3>
<p>We may share data with trusted partners who assist in:</p>
<ul class="list-disc pl-6 space-y-2 mt-2">
<li>Payment processing (payment gateways)</li>
<li>SMS and email notifications</li>
<li>Cloud hosting and data storage</li>
<li>Analytics and performance monitoring</li>
</ul>
</div>
<div>
<h3 class="text-xl font-bold text-[#0F172A] mb-2">3.3 Legal Requirements</h3>
<p>We may disclose your information if required by law, court order, or government request, or to protect our rights and safety.</p>
</div>
<div>
<h3 class="text-xl font-bold text-[#0F172A] mb-2">3.4 Business Transfers</h3>
<p>In the event of a merger, acquisition, or sale of assets, your information may be transferred to the acquiring entity.</p>
</div>
</div>
</section>
<!-- Section 4 -->
<section>
<h2 class="text-3xl font-bold text-[#0F172A] mb-4">4. Data Security</h2>
<div class="text-gray-700 leading-relaxed space-y-3">
<p>We implement industry-standard security measures to protect your personal information:</p>
<ul class="list-disc pl-6 space-y-2">
<li>Encryption of sensitive data during transmission (SSL/TLS)</li>
<li>Secure storage with access controls and authentication</li>
<li>Regular security audits and vulnerability assessments</li>
<li>Employee training on data protection practices</li>
</ul>
<p class="mt-4">However, no method of transmission over the internet is 100% secure. While we strive to protect your data, we cannot guarantee absolute security.</p>
</div>
</section>
<!-- Section 5 -->
<section>
<h2 class="text-3xl font-bold text-[#0F172A] mb-4">5. Data Retention</h2>
<div class="text-gray-700 leading-relaxed space-y-3">
<p>We retain your personal information for as long as necessary to:</p>
<ul class="list-disc pl-6 space-y-2">
<li>Provide our services and maintain your account</li>
<li>Comply with legal and regulatory obligations</li>
<li>Resolve disputes and enforce agreements</li>
<li>Maintain business records and analytics</li>
</ul>
<p class="mt-4">When your data is no longer needed, we securely delete or anonymize it in accordance with our retention policies and applicable laws.</p>
</div>
</section>
<!-- Section 6 -->
<section>
<h2 class="text-3xl font-bold text-[#0F172A] mb-4">6. Your Rights and Choices</h2>
<div class="text-gray-700 leading-relaxed space-y-3">
<p>You have the following rights regarding your personal information:</p>
<ul class="list-disc pl-6 space-y-2">
<li><strong>Access:</strong> Request a copy of the personal data we hold about you.</li>
<li><strong>Correction:</strong> Update or correct inaccurate or incomplete information.</li>
<li><strong>Deletion:</strong> Request deletion of your personal data, subject to legal obligations.</li>
<li><strong>Opt-Out:</strong> Unsubscribe from marketing communications at any time.</li>
<li><strong>Data Portability:</strong> Request your data in a portable format.</li>
<li><strong>Objection:</strong> Object to certain data processing activities.</li>
</ul>
<p class="mt-4">To exercise these rights, please contact us at support@tekpair.store.</p>
</div>
</section>
<!-- Section 7 -->
<section>
<h2 class="text-3xl font-bold text-[#0F172A] mb-4">7. Cookies and Tracking Technologies</h2>
<div class="text-gray-700 leading-relaxed space-y-3">
<p>We use cookies and similar technologies to:</p>
<ul class="list-disc pl-6 space-y-2">
<li>Remember your preferences and settings</li>
<li>Analyze platform usage and performance</li>
<li>Provide personalized content and advertisements</li>
<li>Improve security and detect fraud</li>
</ul>
<p class="mt-4">You can control cookie settings through your browser preferences. However, disabling cookies may affect platform functionality.</p>
</div>
</section>
<!-- Section 8 -->
<section>
<h2 class="text-3xl font-bold text-[#0F172A] mb-4">8. Third-Party Links</h2>
<div class="text-gray-700 leading-relaxed space-y-3">
<p>Our platform may contain links to third-party websites or services. We are not responsible for the privacy practices of these external sites. We encourage you to review their privacy policies before providing any personal information.</p>
</div>
</section>
<!-- Section 9 -->
<section>
<h2 class="text-3xl font-bold text-[#0F172A] mb-4">9. Children's Privacy</h2>
<div class="text-gray-700 leading-relaxed space-y-3">
<p>Tekpair is not intended for individuals under the age of 18. We do not knowingly collect personal information from children. If we become aware that we have collected data from a child without parental consent, we will take steps to delete it promptly.</p>
</div>
</section>
<!-- Section 10 -->
<section>
<h2 class="text-3xl font-bold text-[#0F172A] mb-4">10. International Data Transfers</h2>
<div class="text-gray-700 leading-relaxed space-y-3">
<p>Your information may be transferred to and processed in countries other than your own. We ensure that such transfers comply with applicable data protection laws and implement appropriate safeguards to protect your data.</p>
</div>
</section>
<!-- Section 11 -->
<section>
<h2 class="text-3xl font-bold text-[#0F172A] mb-4">11. Changes to This Privacy Policy</h2>
<div class="text-gray-700 leading-relaxed space-y-3">
<p>We may update this Privacy Policy from time to time to reflect changes in our practices or legal requirements. We will notify you of significant changes through email or platform notifications. Your continued use of Tekpair after such changes constitutes acceptance of the updated policy.</p>
<p class="mt-4">We recommend reviewing this policy periodically to stay informed about how we protect your information.</p>
</div>
</section>
<!-- Section 12 -->
<section>
<h2 class="text-3xl font-bold text-[#0F172A] mb-4">12. Contact Us</h2>
<div class="text-gray-700 leading-relaxed space-y-3">
<p>If you have questions, concerns, or requests regarding this Privacy Policy or your personal data, please contact us:</p>
<div class="bg-gray-50 p-6 rounded-xl mt-4">
<p><strong>Tekpair Privacy Team</strong></p>
<p>Email: privacy@tekpair.com</p>
<p>Support Email: support@tekpair.store</p>
<p>Location: West Bengal, India</p>
</div>
</div>
</section>
</div>
<!-- Consent Notice -->
<div class="mt-12 bg-blue-600 text-white rounded-2xl p-8 text-center">
<h3 class="text-2xl font-bold mb-3">Your Consent</h3>
<p class="leading-relaxed">By using Tekpair, you consent to the collection, use, and sharing of your information as described in this Privacy Policy. If you do not agree, please discontinue use of our platform.</p>
</div>
</div>
</main>
<!-- Footer -->
<footer class="syn-footer-root">
<style>
.syn-footer-root,
.syn-footer-root *,
.syn-footer-root *::before,
.syn-footer-root *::after { box-sizing: border-box; }
.syn-footer-root {
--blue: #1A4BFF;
--blue-dark: #1239CC;
--white: #ffffff;
--cream: #E8EEFF;
--text-dark: #0f172a;
--text-mid: #1e3a8a;
background: linear-gradient(to bottom, #ffffff 0%, #f8faff 10%, #edf3ff 22%, #dbe7ff 38%, #b7ceff 56%, #7da5ff 74%, #1A4BFF 92%, #1A4BFF 100%);
color: var(--text-dark);
font-family: 'Manrope', sans-serif;
margin-top: 0;
}
.syn-footer-main {
padding: 80px 60px 60px;
display: grid;
grid-template-columns: 320px 1fr;
gap: 80px;
align-items: flex-start;
}
.syn-logo-img {
height: 120px;
width: auto;
display: block;
margin-bottom: 20px;
}
.syn-tagline {
font-size: 16px;
line-height: 1.7;
color: #334155;
max-width: 290px;
margin-bottom: 30px;
letter-spacing: 0;
}
.syn-footer-nav {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 40px 20px;
padding-top: 8px;
}
.syn-nav-link {
display: block;
font-size: 13px;
letter-spacing: 0.01em;
text-transform: none;
font-weight: 600;
color: var(--text-dark);
text-decoration: none;
margin-bottom: 14px;
opacity: 0.92;
transition: opacity 0.2s;
line-height: 1.45;
}
.syn-nav-link:hover { opacity: 1; text-decoration: underline; }
.syn-footer-bottom {
border-top: 1px solid rgba(255,255,255,0.2);
padding: 22px 60px;
display: flex;
align-items: center;
justify-content: space-between;
font-size: 14px;
letter-spacing: 0.01em;
font-weight: 600;
opacity: 1;
color: var(--white);
}
.syn-footer-bottom a { color: var(--white); text-decoration: none; }
.syn-footer-bottom a:hover { text-decoration: underline; }
.syn-footer-bottom-left {
display: flex;
gap: 24px;
flex-wrap: wrap;
align-items: center;
}
.syn-social-icons { display: flex; gap: 12px; align-items: center; }
.syn-social-icon {
width: 30px;
height: 30px;
border: 1px solid rgba(255,255,255,0.4);
border-radius: 4px;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
transition: border-color 0.2s, background 0.2s;
}
.syn-social-icon:hover {
border-color: var(--white);
background: rgba(255,255,255,0.1);
}
.syn-social-icon svg { width: 14px; height: 14px; fill: var(--white); }
.syn-wordmark-row { display: flex; align-items: flex-end; overflow: hidden; }
@media (max-width: 1024px) {
.syn-footer-main {
grid-template-columns: 1fr;
gap: 40px;
padding: 64px 28px 48px;
}
.syn-footer-nav {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
.syn-footer-bottom {
padding: 20px 28px;
flex-direction: column;
gap: 16px;
align-items: flex-start;
}
}
@media (max-width: 640px) {
.syn-footer-nav { grid-template-columns: 1fr; }
}
</style>
<div class="syn-footer-main">
<div class="syn-footer-left">
<img src="assets/tekpair.svg" alt="Tekpair" class="syn-logo-img"/>
<p class="syn-tagline">See what's in it for you. Expert home services, delivered to your doorstep.</p>
</div>
<nav class="syn-footer-nav">
<div class="syn-nav-col">
<div style="font-weight: 700; font-size: 14px; margin-bottom: 16px; color: var(--text-dark);">Company</div>
<a href="about-us.html" class="syn-nav-link">About us</a>
<a href="terms-conditions.html" class="syn-nav-link">Terms & conditions</a>
<a href="privacy-policy.html" class="syn-nav-link">Privacy policy</a>
</div>
<div class="syn-nav-col">
<div style="font-weight: 700; font-size: 14px; margin-bottom: 16px; color: var(--text-dark);">For customers</div>
<a href="landing.html#reviews" class="syn-nav-link">Reviews</a>
<a href="landing.html#homeservices" class="syn-nav-link">Categories near you</a>
<a href="#" class="syn-nav-link">Contact us</a>
</div>
<div class="syn-nav-col">
<div style="font-weight: 700; font-size: 14px; margin-bottom: 16px; color: var(--text-dark);">For professionals</div>
<a href="login.html?mode=provider" class="syn-nav-link">Register as a professional</a>
</div>
</nav>
</div>
<div class="syn-footer-bottom">
<div class="syn-footer-bottom-left">
<span style="opacity: 1; color: #ffffff;">© 2026 Tekpair. All rights reserved</span>
</div>
<div class="syn-social-icons">
<div class="syn-social-icon" title="LinkedIn">
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path d="M20.447 20.452h-3.554v-5.569c0-1.328-.027-3.037-1.852-3.037-1.853 0-2.136 1.445-2.136 2.939v5.667H9.351V9h3.414v1.561h.046c.477-.9 1.637-1.85 3.37-1.85 3.601 0 4.267 2.37 4.267 5.455v6.286zM5.337 7.433a2.062 2.062 0 01-2.063-2.065 2.064 2.064 0 112.063 2.065zm1.782 13.019H3.555V9h3.564v11.452zM22.225 0H1.771C.792 0 0 .774 0 1.729v20.542C0 23.227.792 24 1.771 24h20.451C23.2 24 24 23.227 24 22.271V1.729C24 .774 23.2 0 22.222 0h.003z"/>
</svg>
</div>
<div class="syn-social-icon" title="Instagram">
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2.163c3.204 0 3.584.012 4.85.07 3.252.148 4.771 1.691 4.919 4.919.058 1.265.069 1.645.069 4.849 0 3.205-.012 3.584-.069 4.849-.149 3.225-1.664 4.771-4.919 4.919-1.266.058-1.644.07-4.85.07-3.204 0-3.584-.012-4.849-.07-3.26-.149-4.771-1.699-4.919-4.92-.058-1.265-.07-1.644-.07-4.849 0-3.204.013-3.583.07-4.849.149-3.227 1.664-4.771 4.919-4.919 1.266-.057 1.645-.069 4.849-.069zm0-2.163c-3.259 0-3.667.014-4.947.072-4.358.2-6.78 2.618-6.98 6.98-.059 1.281-.073 1.689-.073 4.948 0 3.259.014 3.668.072 4.948.2 4.358 2.618 6.78 6.98 6.98 1.281.058 1.689.072 4.948.072 3.259 0 3.668-.014 4.948-.072 4.354-.2 6.782-2.618 6.979-6.98.059-1.28.073-1.689.073-4.948 0-3.259-.014-3.667-.072-4.947-.196-4.354-2.617-6.78-6.979-6.98-1.281-.059-1.69-.073-4.949-.073zm0 5.838a6.162 6.162 0 100 12.324 6.162 6.162 0 000-12.324zM12 16a4 4 0 110-8 4 4 0 010 8zm6.406-11.845a1.44 1.44 0 100 2.881 1.44 1.44 0 000-2.881z"/>
</svg>
</div>
<div class="syn-social-icon" title="Email">
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path d="M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z"/>
</svg>
</div>
</div>
</div>
<div class="syn-wordmark-row">
<div style="font-family: 'Playfair Display', serif; font-size: 390px; font-weight: 900; color: rgba(26, 75, 255, 0.15); letter-spacing: -2px; line-height: 0.85; padding: 10px 30px 8px; user-select: none;">Tekpair</div>
</div>
</footer>
<!-- Scripts -->
<script src="https://cdn.jsdelivr.net/npm/@supabase/supabase-js@2"></script>
<script src="js/supabase.js"></script>
<script src="js/auth.js"></script>
<script src="js/utils.js"></script>
</body>
</html>