-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsupport.html
More file actions
72 lines (70 loc) · 3.14 KB
/
Copy pathsupport.html
File metadata and controls
72 lines (70 loc) · 3.14 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Support - Tabsome</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
<style>
body {
font-family: 'Inter', sans-serif;
background-color: #0d1117;
color: #f3f4f6;
}
.container {
max-width: 1200px;
}
.gradient-text {
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
</style>
</head>
<body class="bg-gray-900 text-gray-100 antialiased leading-relaxed">
<!-- Top Navigation Bar -->
<nav class="bg-gray-800 fixed w-full top-0 z-50">
<div class="container mx-auto px-4">
<div class="flex justify-between items-center h-16">
<div class="flex items-center">
<a href="index.html" class="flex items-center">
<img src="assets/logo-128.png" alt="Tabsome Logo" class="h-8 w-8">
<span class="ml-3 text-xl font-semibold">Tabsome</span>
</a>
</div>
</div>
</div>
</nav>
<main class="container mx-auto px-4 pt-24 pb-16">
<!-- Support Section -->
<section class="max-w-2xl mx-auto text-center space-y-8">
<h1 class="text-4xl font-bold">
<span class="gradient-text bg-gradient-to-r from-purple-400 to-pink-600">Support</span>
</h1>
<p class="text-lg text-gray-400 mb-8">
Need help with Tabsome? Have a feature request or found a bug? We're here to help!
</p>
<div class="bg-gray-800 p-8 rounded-3xl shadow-xl">
<p class="text-gray-300 mb-6">
Please fill out our support form below and we'll get back to you as soon as possible.
</p>
<a target="_blank" href="https://docs.google.com/forms/d/e/1FAIpQLSfE9V895j8O6LcXHI3FIoW8v3SKnOeeFvroWnJVgPpyXHHOaw/viewform"
class="inline-block py-3 px-8 text-lg font-semibold rounded-full bg-gradient-to-r from-purple-500 to-pink-600 hover:from-purple-600 hover:to-pink-700 transition-all transform hover:scale-105 shadow-lg">
Open Support Form
</a>
</div>
</section>
</main>
<!-- Footer -->
<footer class="container mx-auto px-4 py-8 border-t border-gray-800">
<div class="flex justify-center items-center space-x-4 text-sm text-gray-400">
<a href="privacy.html" class="hover:text-gray-100 transition-colors">Privacy Policy</a>
<a href="support.html" class="hover:text-gray-100 transition-colors">Support</a>
<span>© 2025 Tabsome. All rights reserved.</span>
</div>
</footer>
</body>
</html>