-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
217 lines (206 loc) · 14.5 KB
/
Copy pathindex.html
File metadata and controls
217 lines (206 loc) · 14.5 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
<!DOCTYPE html>
<html lang="en" class="dark">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Steering ETS2 Controller</title>
<link rel="icon" type="image/x-icon" href="assets/images/favicon.ico">
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
darkMode: 'class',
theme: {
extend: {
colors: {
brand: {
500: '#10b981',
600: '#059669',
},
dark: {
900: '#0f172a',
800: '#1e293b',
700: '#334155'
}
},
animation: {
'float': 'float 6s ease-in-out infinite',
'glow': 'glow 2s ease-in-out infinite alternate',
},
keyframes: {
float: {
'0%, 100%': { transform: 'translateY(0)' },
'50%': { transform: 'translateY(-20px)' },
},
glow: {
'from': { boxShadow: '0 0 10px #10b981, 0 0 20px #10b981' },
'to': { boxShadow: '0 0 20px #10b981, 0 0 40px #10b981' },
}
}
}
}
}
</script>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;800&family=Outfit:wght@700&display=swap" rel="stylesheet">
<style>
body { font-family: 'Inter', sans-serif; }
h1, h2, h3, .font-outfit { font-family: 'Outfit', sans-serif; }
.glass { background: rgba(30, 41, 59, 0.7); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid rgba(255, 255, 255, 0.1); }
.gradient-text { background: linear-gradient(to right, #34d399, #10b981); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
</style>
</head>
<body class="bg-dark-900 text-white min-h-screen flex flex-col selection:bg-brand-500 selection:text-white overflow-x-hidden">
<!-- Navigation -->
<nav class="fixed w-full z-50 glass border-b-0 border-white/5 transition-all duration-300" id="navbar">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex justify-between items-center h-20">
<div class="flex items-center gap-3 cursor-pointer" onclick="window.location.href='index.html'">
<img src="assets/images/logo.png" alt="V-Joy Logo" class="w-10 h-10 object-contain drop-shadow-[0_0_10px_rgba(16,185,129,0.5)]">
<span class="font-outfit text-2xl font-bold tracking-wide">V-JOY<span class="text-brand-500">.</span></span>
</div>
<div class="hidden md:flex space-x-8">
<a href="index.html" class="text-brand-500 font-semibold transition-colors">Home</a>
<a href="about.html" class="text-gray-300 hover:text-brand-500 font-semibold transition-colors">About</a>
<a href="download.html" class="text-gray-300 hover:text-brand-500 font-semibold transition-colors">Download</a>
</div>
<div class="md:hidden">
<button id="mobile-menu-btn" class="text-gray-300 hover:text-white focus:outline-none">
<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>
</div>
<!-- Mobile Menu -->
<div id="mobile-menu" class="hidden md:hidden glass border-t border-white/10 absolute w-full">
<div class="px-4 pt-2 pb-6 space-y-2 text-center">
<a href="index.html" class="block px-3 py-2 text-brand-500 font-medium">Home</a>
<a href="about.html" class="block px-3 py-2 text-gray-300 hover:text-white font-medium">About</a>
<a href="download.html" class="block px-3 py-2 text-gray-300 hover:text-white font-medium">Download</a>
</div>
</div>
</nav>
<!-- Hero Section -->
<main class="flex-grow pt-20">
<div class="relative overflow-hidden">
<!-- Background Decorations -->
<div class="absolute top-1/4 left-1/4 w-96 h-96 bg-brand-500/20 rounded-full mix-blend-screen filter blur-[100px] animate-pulse"></div>
<div class="absolute bottom-1/4 right-1/4 w-96 h-96 bg-emerald-700/20 rounded-full mix-blend-screen filter blur-[120px] animate-pulse" style="animation-delay: 2s;"></div>
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 pt-20 pb-24 lg:pt-32 lg:pb-40 relative z-10">
<div class="grid lg:grid-cols-2 gap-12 lg:gap-8 items-center">
<div class="text-center lg:text-left">
<div class="inline-flex items-center gap-2 px-4 py-2 rounded-full glass border border-brand-500/30 text-brand-500 text-sm font-semibold mb-6">
<span class="w-2 h-2 rounded-full bg-brand-500 animate-ping"></span>
Version 1.0.4 is now live!
</div>
<h1 class="text-5xl lg:text-7xl font-extrabold tracking-tight mb-6 leading-tight">
Transform Your <br/> Smartphone Into A <br/>
<span class="gradient-text">Pro Controller.</span>
</h1>
<p class="mt-4 text-xl text-gray-400 mb-10 max-w-2xl mx-auto lg:mx-0">
Experience zero-latency wireless steering for Euro Truck Simulator 2. Connect effortlessly via Wi-Fi or USB and take the wheel like never before.
</p>
<div class="flex flex-col sm:flex-row gap-4 justify-center lg:justify-start">
<a href="download.html" class="inline-flex justify-center items-center px-8 py-4 border border-transparent text-lg font-bold rounded-xl text-dark-900 bg-brand-500 hover:bg-brand-400 hover:shadow-[0_0_20px_rgba(16,185,129,0.4)] transition-all transform hover:-translate-y-1">
Get Started Free
<svg class="ml-2 -mr-1 w-5 h-5" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 16v1a3 3 0 003 3h10a3 3 0 003-3v-1m-4-4l-4 4m0 0l-4-4m4 4V4"></path></svg>
</a>
<a href="about.html" class="inline-flex justify-center items-center px-8 py-4 border border-gray-600 hover:border-gray-400 text-lg font-bold rounded-xl text-white glass hover:bg-white/5 transition-all">
Learn More
</a>
</div>
</div>
<div class="relative lg:ml-auto w-full max-w-lg mx-auto mt-12 lg:mt-0 animate-float">
<div class="absolute inset-0 bg-gradient-to-tr from-brand-500/40 to-transparent rounded-full filter blur-[80px]"></div>
<img src="assets/images/hero_image.png" alt="Futuristic Steering Controller" class="relative z-10 w-full h-auto drop-shadow-2xl rounded-2xl border border-white/10 shadow-2xl shadow-brand-500/20 object-cover" />
<!-- Floating Elements -->
<div class="absolute -left-8 top-1/4 glass p-4 rounded-xl border border-white/10 shadow-xl flex items-center gap-3 animate-float" style="animation-delay: 1s;">
<div class="w-8 h-8 rounded-full bg-green-500/20 flex items-center justify-center">
<svg class="w-4 h-4 text-green-500" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M13 10V3L4 14h7v7l9-11h-7z"></path></svg>
</div>
<div>
<p class="text-xs text-gray-400">Latency</p>
<p class="font-bold text-white">< 2ms</p>
</div>
</div>
<div class="absolute -right-4 bottom-1/4 glass p-4 rounded-xl border border-white/10 shadow-xl flex items-center gap-3 animate-float" style="animation-delay: 2s;">
<div class="w-8 h-8 rounded-full bg-blue-500/20 flex items-center justify-center">
<svg class="w-4 h-4 text-blue-500" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M8.111 16.404a5.5 5.5 0 017.778 0M12 20h.01m-7.08-7.071c3.904-3.905 10.236-3.905 14.141 0M1.394 9.393c5.857-5.857 15.355-5.857 21.213 0"></path></svg>
</div>
<div>
<p class="text-xs text-gray-400">Connection</p>
<p class="font-bold text-white">Auto-Sync</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Features Section -->
<div class="border-t border-white/5 bg-dark-800/30">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-24">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold mb-4">Why choose <span class="text-brand-500">Steering ETS2</span>?</h2>
<p class="text-gray-400 max-w-2xl mx-auto">Built from the ground up for simulation enthusiasts who demand precision and reliability without the premium price tag of hardware wheels.</p>
</div>
<div class="grid md:grid-cols-3 gap-8">
<!-- Feature 1 -->
<div class="glass p-8 rounded-2xl hover:-translate-y-2 transition-transform duration-300 border border-white/5 hover:border-brand-500/30 group">
<div class="w-14 h-14 rounded-xl bg-dark-800 flex items-center justify-center mb-6 group-hover:bg-brand-500/20 transition-colors">
<svg class="w-7 h-7 text-brand-500" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 18h.01M8 21h8a2 2 0 002-2V5a2 2 0 00-2-2H8a2 2 0 00-2 2v14a2 2 0 002 2z"></path></svg>
</div>
<h3 class="text-xl font-bold mb-3">Gyroscopic Precision</h3>
<p class="text-gray-400 leading-relaxed">Utilizes advanced smartphone sensors to map your real-world rotations perfectly 1:1 in-game.</p>
</div>
<!-- Feature 2 -->
<div class="glass p-8 rounded-2xl hover:-translate-y-2 transition-transform duration-300 border border-white/5 hover:border-brand-500/30 group relative overflow-hidden">
<div class="absolute top-0 right-0 w-32 h-32 bg-brand-500/10 rounded-full mix-blend-screen filter blur-2xl group-hover:bg-brand-500/20 transition-colors"></div>
<div class="w-14 h-14 rounded-xl bg-dark-800 flex items-center justify-center mb-6 group-hover:bg-brand-500/20 transition-colors relative z-10">
<svg class="w-7 h-7 text-brand-500" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M13 10V3L4 14h7v7l9-11h-7z"></path></svg>
</div>
<h3 class="text-xl font-bold mb-3 relative z-10">Lightning Fast</h3>
<p class="text-gray-400 leading-relaxed relative z-10">Optimized WebSocket and ADB architecture guarantees sub-millisecond data transmission.</p>
</div>
<!-- Feature 3 -->
<div class="glass p-8 rounded-2xl hover:-translate-y-2 transition-transform duration-300 border border-white/5 hover:border-brand-500/30 group">
<div class="w-14 h-14 rounded-xl bg-dark-800 flex items-center justify-center mb-6 group-hover:bg-brand-500/20 transition-colors">
<svg class="w-7 h-7 text-brand-500" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 4v5h.582m15.356 2A8.001 8.001 0 004.582 9m0 0H9m11 11v-5h-.581m0 0a8.003 8.003 0 01-15.357-2m15.357 2H15"></path></svg>
</div>
<h3 class="text-xl font-bold mb-3">Seamless Updates</h3>
<p class="text-gray-400 leading-relaxed">Built-in auto-updaters for both PC and Android ensure you always have the latest features automatically.</p>
</div>
</div>
</div>
</div>
</main>
<!-- Footer -->
<footer class="border-t border-white/10 bg-dark-900 py-10 mt-auto">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 flex flex-col md:flex-row justify-between items-center gap-4">
<div class="flex items-center gap-2">
<span class="font-outfit font-bold text-xl">V-JOY<span class="text-brand-500">.</span></span>
<span class="text-gray-500 text-sm">© 2026</span>
</div>
<p class="text-gray-400 text-sm">Designed & Developed by <span class="text-brand-500 font-semibold">Keng</span></p>
</div>
</footer>
<script>
// Navbar blur on scroll
window.addEventListener('scroll', () => {
const nav = document.getElementById('navbar');
if (window.scrollY > 20) {
nav.classList.add('bg-dark-900/80', 'shadow-lg');
nav.classList.remove('bg-transparent');
} else {
nav.classList.remove('bg-dark-900/80', 'shadow-lg');
nav.classList.add('bg-transparent');
}
});
// Mobile menu toggle
const btn = document.getElementById('mobile-menu-btn');
const menu = document.getElementById('mobile-menu');
btn.addEventListener('click', () => {
menu.classList.toggle('hidden');
});
</script>
</body>
</html>