Spaces:
Running
Running
The site should be called SkootrGuy ePowerSports and it should incorporate the attached image as a hero
Browse files- index.html +16 -36
index.html
CHANGED
|
@@ -3,8 +3,8 @@
|
|
| 3 |
<head>
|
| 4 |
<meta charset="UTF-8">
|
| 5 |
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 6 |
-
<title>
|
| 7 |
-
|
| 8 |
<script src="https://cdn.tailwindcss.com"></script>
|
| 9 |
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
|
| 10 |
<script src="https://unpkg.com/feather-icons"></script>
|
|
@@ -47,10 +47,9 @@
|
|
| 47 |
<div class="flex justify-between items-center">
|
| 48 |
<div class="flex items-center space-x-2">
|
| 49 |
<div class="w-10 h-10 bg-red-500 rounded-full glow-red"></div>
|
| 50 |
-
<span class="text-xl font-bold bg-gradient-to-r from-red-500 to-fuchsia-500 bg-clip-text text-transparent">
|
| 51 |
</div>
|
| 52 |
-
|
| 53 |
-
<div class="hidden md:flex space-x-8">
|
| 54 |
<a href="#home" class="hover:text-red-400 transition-colors">Home</a>
|
| 55 |
<a href="#products" class="hover:text-red-400 transition-colors">Products</a>
|
| 56 |
<a href="#about" class="hover:text-red-400 transition-colors">About</a>
|
|
@@ -68,23 +67,23 @@
|
|
| 68 |
</div>
|
| 69 |
</div>
|
| 70 |
</nav>
|
| 71 |
-
|
| 72 |
<!-- Hero Section -->
|
| 73 |
<section id="home" class="relative min-h-screen flex items-center justify-center overflow-hidden">
|
| 74 |
-
<div
|
|
|
|
| 75 |
<div class="relative z-10 container mx-auto px-4 text-center">
|
| 76 |
<h1 class="text-6xl md:text-8xl font-bold mb-6">
|
| 77 |
<span class="bg-gradient-to-r from-red-500 to-fuchsia-500 bg-clip-text text-transparent">
|
| 78 |
-
|
| 79 |
</span>
|
| 80 |
<br>
|
| 81 |
<span class="bg-gradient-to-r from-fuchsia-500 to-red-500 bg-clip-text text-transparent">
|
| 82 |
-
|
| 83 |
</span>
|
| 84 |
</h1>
|
| 85 |
<p class="text-xl md:text-2xl mb-8 text-gray-300 max-w-3xl mx-auto">
|
| 86 |
-
|
| 87 |
-
|
| 88 |
</p>
|
| 89 |
<div class="flex flex-col sm:flex-row gap-4 justify-center">
|
| 90 |
<button class="bg-red-500 hover:bg-red-600 px-8 py-4 rounded-xl text-lg font-semibold transition-all hover-lift glow-red">
|
|
@@ -96,8 +95,7 @@
|
|
| 96 |
</div>
|
| 97 |
</div>
|
| 98 |
</section>
|
| 99 |
-
|
| 100 |
-
<!-- Products Section -->
|
| 101 |
<section id="products" class="py-20 bg-gray-800/50">
|
| 102 |
<div class="container mx-auto px-4">
|
| 103 |
<h2 class="text-4xl md:text-5xl font-bold text-center mb-16">
|
|
@@ -199,12 +197,11 @@
|
|
| 199 |
<div>
|
| 200 |
<div class="flex items-center space-x-2 mb-4">
|
| 201 |
<div class="w-8 h-8 bg-red-500 rounded-full"></div>
|
| 202 |
-
<span class="text-xl font-bold">
|
| 203 |
</div>
|
| 204 |
-
<p class="text-gray-400">
|
| 205 |
</div>
|
| 206 |
-
|
| 207 |
-
<div>
|
| 208 |
<h4 class="text-lg font-bold mb-4 text-fuchsia-400">Products</h4>
|
| 209 |
<ul class="space-y-2 text-gray-400">
|
| 210 |
<li><a href="#" class="hover:text-red-400 transition-colors">E-Bikes</a></li>
|
|
@@ -241,28 +238,11 @@
|
|
| 241 |
</div>
|
| 242 |
|
| 243 |
<div class="border-t border-gray-700 mt-8 pt-8 text-center text-gray-400">
|
| 244 |
-
<p>© 2024
|
| 245 |
-
|
| 246 |
</div>
|
| 247 |
</footer>
|
| 248 |
-
|
| 249 |
<script>
|
| 250 |
-
// Initialize Vanta.js globe
|
| 251 |
-
VANTA.GLOBE({
|
| 252 |
-
el: "#vanta-bg",
|
| 253 |
-
mouseControls: true,
|
| 254 |
-
touchControls: true,
|
| 255 |
-
gyroControls: false,
|
| 256 |
-
minHeight: 200.00,
|
| 257 |
-
minWidth: 200.00,
|
| 258 |
-
scale: 1.00,
|
| 259 |
-
scaleMobile: 1.00,
|
| 260 |
-
color: 0xef4444,
|
| 261 |
-
color2: 0xd946ef,
|
| 262 |
-
backgroundColor: 0x111827,
|
| 263 |
-
size: 1.10
|
| 264 |
-
});
|
| 265 |
-
|
| 266 |
// Smooth scroll for navigation links
|
| 267 |
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
|
| 268 |
anchor.addEventListener('click', function (e) {
|
|
|
|
| 3 |
<head>
|
| 4 |
<meta charset="UTF-8">
|
| 5 |
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 6 |
+
<title>SkootrGuy ePowerSports</title>
|
| 7 |
+
<link rel="icon" type="image/x-icon" href="/static/favicon.ico">
|
| 8 |
<script src="https://cdn.tailwindcss.com"></script>
|
| 9 |
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
|
| 10 |
<script src="https://unpkg.com/feather-icons"></script>
|
|
|
|
| 47 |
<div class="flex justify-between items-center">
|
| 48 |
<div class="flex items-center space-x-2">
|
| 49 |
<div class="w-10 h-10 bg-red-500 rounded-full glow-red"></div>
|
| 50 |
+
<span class="text-xl font-bold bg-gradient-to-r from-red-500 to-fuchsia-500 bg-clip-text text-transparent">SkootrGuy</span>
|
| 51 |
</div>
|
| 52 |
+
<div class="hidden md:flex space-x-8">
|
|
|
|
| 53 |
<a href="#home" class="hover:text-red-400 transition-colors">Home</a>
|
| 54 |
<a href="#products" class="hover:text-red-400 transition-colors">Products</a>
|
| 55 |
<a href="#about" class="hover:text-red-400 transition-colors">About</a>
|
|
|
|
| 67 |
</div>
|
| 68 |
</div>
|
| 69 |
</nav>
|
|
|
|
| 70 |
<!-- Hero Section -->
|
| 71 |
<section id="home" class="relative min-h-screen flex items-center justify-center overflow-hidden">
|
| 72 |
+
<div class="absolute inset-0 bg-cover bg-center" style="background-image: url('https://huggingface.co/spaces/Falln87/thunderboltriders/resolve/main/images/1760649399355.jpg')"></div>
|
| 73 |
+
<div class="absolute inset-0 bg-black/60"></div>
|
| 74 |
<div class="relative z-10 container mx-auto px-4 text-center">
|
| 75 |
<h1 class="text-6xl md:text-8xl font-bold mb-6">
|
| 76 |
<span class="bg-gradient-to-r from-red-500 to-fuchsia-500 bg-clip-text text-transparent">
|
| 77 |
+
SKOOTR
|
| 78 |
</span>
|
| 79 |
<br>
|
| 80 |
<span class="bg-gradient-to-r from-fuchsia-500 to-red-500 bg-clip-text text-transparent">
|
| 81 |
+
GUY
|
| 82 |
</span>
|
| 83 |
</h1>
|
| 84 |
<p class="text-xl md:text-2xl mb-8 text-gray-300 max-w-3xl mx-auto">
|
| 85 |
+
Your premier destination for electric power sports. From high-performance e-bikes to urban scooters,
|
| 86 |
+
we bring you the future of personal transportation.
|
| 87 |
</p>
|
| 88 |
<div class="flex flex-col sm:flex-row gap-4 justify-center">
|
| 89 |
<button class="bg-red-500 hover:bg-red-600 px-8 py-4 rounded-xl text-lg font-semibold transition-all hover-lift glow-red">
|
|
|
|
| 95 |
</div>
|
| 96 |
</div>
|
| 97 |
</section>
|
| 98 |
+
<!-- Products Section -->
|
|
|
|
| 99 |
<section id="products" class="py-20 bg-gray-800/50">
|
| 100 |
<div class="container mx-auto px-4">
|
| 101 |
<h2 class="text-4xl md:text-5xl font-bold text-center mb-16">
|
|
|
|
| 197 |
<div>
|
| 198 |
<div class="flex items-center space-x-2 mb-4">
|
| 199 |
<div class="w-8 h-8 bg-red-500 rounded-full"></div>
|
| 200 |
+
<span class="text-xl font-bold">SkootrGuy</span>
|
| 201 |
</div>
|
| 202 |
+
<p class="text-gray-400">Your premier destination for electric power sports vehicles.</p>
|
| 203 |
</div>
|
| 204 |
+
<div>
|
|
|
|
| 205 |
<h4 class="text-lg font-bold mb-4 text-fuchsia-400">Products</h4>
|
| 206 |
<ul class="space-y-2 text-gray-400">
|
| 207 |
<li><a href="#" class="hover:text-red-400 transition-colors">E-Bikes</a></li>
|
|
|
|
| 238 |
</div>
|
| 239 |
|
| 240 |
<div class="border-t border-gray-700 mt-8 pt-8 text-center text-gray-400">
|
| 241 |
+
<p>© 2024 SkootrGuy ePowerSports. All rights reserved. Ride the future, responsibly.</p>
|
| 242 |
+
</div>
|
| 243 |
</div>
|
| 244 |
</footer>
|
|
|
|
| 245 |
<script>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 246 |
// Smooth scroll for navigation links
|
| 247 |
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
|
| 248 |
anchor.addEventListener('click', function (e) {
|