wavetype-xyz-index2 / index2.html
vgrowhouse's picture
undefined - Initial Deployment
5b5deca verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>What's in Store - WaveType</title>
<link rel="icon" type="image/x-icon" href="/static/favicon.ico">
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;700&family=Exo+2:wght@300;400;600&display=swap" rel="stylesheet">
<link href="https://unpkg.com/[email protected]/dist/aos.css" rel="stylesheet">
<script src="https://unpkg.com/[email protected]/dist/aos.js"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<script src="https://unpkg.com/feather-icons"></script>
<style>
body {
font-family: 'Exo 2', sans-serif;
background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
color: #e2e8f0;
min-height: 100vh;
}
.orbitron {
font-family: 'Orbitron', sans-serif;
}
.glow {
text-shadow: 0 0 10px rgba(125, 255, 255, 0.7);
}
.card-bg {
background: rgba(15, 23, 42, 0.7);
backdrop-filter: blur(10px);
border: 1px solid rgba(94, 234, 212, 0.3);
}
.feature-card {
transition: all 0.3s ease;
}
.feature-card:hover {
transform: translateY(-10px);
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 10px 10px -5px rgba(0, 0, 0, 0.1);
}
.btn-primary {
background: linear-gradient(45deg, #00c6ff, #0072ff);
transition: all 0.3s ease;
}
.btn-primary:hover {
transform: translateY(-3px);
box-shadow: 0 10px 20px rgba(0, 114, 255, 0.3);
}
</style>
</head>
<body>
<!-- Background Elements -->
<div class="absolute inset-0 z-0">
<div class="absolute top-1/4 left-1/4 w-64 h-64 bg-blue-500 rounded-full filter blur-3xl opacity-20 animate-pulse"></div>
<div class="absolute bottom-1/3 right-1/4 w-72 h-72 bg-purple-500 rounded-full filter blur-3xl opacity-20 animate-pulse"></div>
</div>
<!-- Main Content -->
<div class="relative z-10 min-h-screen flex flex-col">
<!-- Header -->
<header class="py-6 px-4 sm:px-8">
<div class="container mx-auto flex justify-between items-center">
<div class="flex items-center space-x-2">
<div class="w-10 h-10 bg-gradient-to-r from-cyan-400 to-blue-500 rounded-full"></div>
<h1 class="orbitron text-2xl font-bold glow">WAVETYPE</h1>
</div>
<nav>
<ul class="flex space-x-6">
<li><a href="index.html" class="hover:text-cyan-300 transition">Home</a></li>
<li><a href="#" class="hover:text-cyan-300 transition">About</a></li>
<li><a href="#" class="hover:text-cyan-300 transition">Contact</a></li>
</ul>
</nav>
</div>
</header>
<!-- Hero Section -->
<main class="flex-grow py-12 px-4">
<div class="container mx-auto max-w-6xl">
<div class="text-center mb-16" data-aos="fade-up" data-aos-duration="1000">
<h1 class="orbitron text-4xl md:text-5xl font-bold mb-6 glow">
What's in Store
</h1>
<p class="text-xl max-w-3xl mx-auto text-gray-300">
Get a sneak peek at the exciting features and experiences we're preparing for you in Fantasy Rally.
</p>
</div>
<!-- Features Grid -->
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8 mb-16">
<!-- Feature 1 -->
<div class="feature-card card-bg rounded-2xl p-6 border border-cyan-500/30" data-aos="fade-up" data-aos-duration="1000">
<div class="w-16 h-16 bg-gradient-to-r from-cyan-400 to-blue-500 rounded-xl flex items-center justify-center mb-6">
<i data-feather="users" class="text-white w-8 h-8"></i>
</div>
<h3 class="orbitron text-xl font-bold mb-3">Multiplayer Racing</h3>
<p class="text-gray-300 mb-4">
Compete against players from around the world in real-time fantasy racing events.
</p>
</div>
<!-- Feature 2 -->
<div class="feature-card card-bg rounded-2xl p-6 border border-cyan-500/30" data-aos="fade-up" data-aos-duration="1000" data-aos-delay="200">
<div class="w-16 h-16 bg-gradient-to-r from-purple-500 to-pink-500 rounded-xl flex items-center justify-center mb-6">
<i data-feather="trending-up" class="text-white w-8 h-8"></i>
</div>
<h3 class="orbitron text-xl font-bold mb-3">Dynamic Leagues</h3>
<p class="text-gray-300 mb-4">
Join or create leagues with customizable rules and compete for exclusive rewards.
</p>
</div>
<!-- Feature 3 -->
<div class="feature-card card-bg rounded-2xl p-6 border border-cyan-500/30" data-aos="fade-up" data-aos-duration="1000" data-aos-delay="400">
<div class="w-16 h-16 bg-gradient-to-r from-green-400 to-teal-500 rounded-xl flex items-center justify-center mb-6">
<i data-feather="bar-chart-2" class="text-white w-8 h-8"></i>
</div>
<h3 class="orbitron text-xl font-bold mb-3">Advanced Analytics</h3>
<p class="text-gray-300 mb-4">
Access detailed performance metrics and predictive analytics to make informed decisions.
</p>
</div>
<!-- Feature 4 -->
<div class="feature-card card-bg rounded-2xl p-6 border border-cyan-500/30" data-aos="fade-up" data-aos-duration="1000">
<div class="w-16 h-16 bg-gradient-to-r from-yellow-400 to-orange-500 rounded-xl flex items-center justify-center mb-6">
<i data-feather="gift" class="text-white w-8 h-8"></i>
</div>
<h3 class="orbitron text-xl font-bold mb-3">Exclusive Rewards</h3>
<p class="text-gray-300 mb-4">
Earn unique in-game items, skins, and real-world merchandise for your achievements.
</p>
</div>
<!-- Feature 5 -->
<div class="feature-card card-bg rounded-2xl p-6 border border-cyan-500/30" data-aos="fade-up" data-aos-duration="1000" data-aos-delay="200">
<div class="w-16 h-16 bg-gradient-to-r from-red-500 to-pink-600 rounded-xl flex items-center justify-center mb-6">
<i data-feather="calendar" class="text-white w-8 h-8"></i>
</div>
<h3 class="orbitron text-xl font-bold mb-3">Live Events</h3>
<p class="text-gray-300 mb-4">
Participate in special events coinciding with real-world racing championships.
</p>
</div>
<!-- Feature 6 -->
<div class="feature-card card-bg rounded-2xl p-6 border border-cyan-500/30" data-aos="fade-up" data-aos-duration="1000" data-aos-delay="400">
<div class="w-16 h-16 bg-gradient-to-r from-indigo-500 to-purple-600 rounded-xl flex items-center justify-center mb-6">
<i data-feather="smartphone" class="text-white w-8 h-8"></i>
</div>
<h3 class="orbitron text-xl font-bold mb-3">Mobile Integration</h3>
<p class="text-gray-300 mb-4">
Manage your fantasy team on the go with our fully-featured mobile application.
</p>
</div>
</div>
<!-- CTA Section -->
<div class="text-center py-12" data-aos="fade-up" data-aos-duration="1000">
<div class="card-bg rounded-2xl p-10 max-w-3xl mx-auto border border-cyan-500/30">
<h2 class="orbitron text-3xl font-bold mb-6 glow">Ready to Join the Fantasy?</h2>
<p class="text-xl mb-8 text-gray-300">
Be among the first to experience Fantasy Rally when we launch. Sign up for early access and exclusive beta invites.
</p>
<a href="index.html#beta" class="btn-primary py-3 px-10 rounded-full text-white font-semibold inline-block">
Get Early Access
</a>
</div>
</div>
</div>
</main>
<!-- Footer -->
<footer class="py-8 text-center text-gray-400">
<div class="container mx-auto px-4">
<p>© 2023 WaveType. All rights reserved.</p>
</div>
</footer>
</div>
<script>
AOS.init({
once: true
});
feather.replace();
</script>
</body>
</html>