hkanade's picture
add a description
248e8b1 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Colorful Void Explorer</title>
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://unpkg.com/feather-icons"></script>
<script src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.globe.min.js"></script>
<style>
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap');
body {
font-family: 'Space Grotesk', sans-serif;
overflow-x: hidden;
}
.gradient-bg {
background: linear-gradient(135deg, #6e00ff 0%, #ff00c8 50%, #ff7b00 100%);
background-size: 200% 200%;
animation: gradientMove 15s ease infinite;
}
@keyframes gradientMove {
0% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
100% { background-position: 0% 50%; }
}
.floating {
animation: floating 6s ease-in-out infinite;
}
@keyframes floating {
0% { transform: translateY(0px); }
50% { transform: translateY(-20px); }
100% { transform: translateY(0px); }
}
</style>
</head>
<body class="min-h-screen text-white" id="vanta-bg">
<div class="container mx-auto px-4 py-16 relative z-10">
<header class="flex justify-between items-center mb-20">
<div class="flex items-center space-x-2">
<div class="w-10 h-10 rounded-full gradient-bg"></div>
<span class="text-xl font-bold bg-clip-text text-transparent gradient-bg">VOID</span>
</div>
<nav class="hidden md:flex space-x-8">
<a href="#" class="hover:text-gray-300 transition">Explore</a>
<a href="#" class="hover:text-gray-300 transition">Create</a>
<a href="#" class="hover:text-gray-300 transition">About</a>
<a href="#" class="hover:text-gray-300 transition">Connect</a>
</nav>
<button class="md:hidden">
<i data-feather="menu"></i>
</button>
</header>
<main class="max-w-4xl mx-auto text-center">
<h1 class="text-5xl md:text-7xl font-bold mb-6 leading-tight">
Explore the <span class="gradient-text">Undefined</span> Dimensions
</h1>
<p class="text-xl md:text-2xl text-gray-300 mb-12 max-w-2xl mx-auto">
Where colors don't exist and everything is possible. Dive into the void of undefined possibilities.
</p>
<div class="flex flex-col sm:flex-row justify-center space-y-4 sm:space-y-0 sm:space-x-6">
<button class="px-8 py-4 rounded-full gradient-bg font-bold hover:opacity-90 transition">
Begin Exploration
</button>
<button class="px-8 py-4 bg-white bg-opacity-10 rounded-full font-bold hover:bg-opacity-20 transition">
Learn More
</button>
</div>
</main>
<div class="mt-32 grid grid-cols-1 md:grid-cols-3 gap-8">
<div class="bg-white bg-opacity-5 backdrop-blur-lg p-8 rounded-2xl hover:bg-opacity-10 transition">
<div class="w-14 h-14 rounded-full gradient-bg flex items-center justify-center mb-6">
<i data-feather="compass" class="w-6 h-6"></i>
</div>
<h3 class="text-xl font-bold mb-3">Endless Exploration</h3>
<p class="text-gray-400">Navigate through undefined dimensions where the rules of design don't apply.</p>
</div>
<div class="bg-white bg-opacity-5 backdrop-blur-lg p-8 rounded-2xl hover:bg-opacity-10 transition">
<div class="w-14 h-14 rounded-full gradient-bg flex items-center justify-center mb-6">
<i data-feather="palette" class="w-6 h-6"></i>
</div>
<h3 class="text-xl font-bold mb-3">Colorless Creativity</h3>
<p class="text-gray-400">Create without constraints in a space where colors are undefined.</p>
</div>
<div class="bg-white bg-opacity-5 backdrop-blur-lg p-8 rounded-2xl hover:bg-opacity-10 transition">
<div class="w-14 h-14 rounded-full gradient-bg flex items-center justify-center mb-6">
<i data-feather="users" class="w-6 h-6"></i>
</div>
<h3 class="text-xl font-bold mb-3">Community Void</h3>
<p class="text-gray-400">Connect with other explorers in this undefined space of pure potential.</p>
</div>
</div>
<div class="absolute bottom-8 left-0 right-0 text-center text-gray-500 text-sm">
<p>Float through the undefined dimensions</p>
</div>
</div>
<script>
VANTA.GLOBE({
el: "#vanta-bg",
mouseControls: true,
touchControls: true,
gyroControls: false,
minHeight: 200.00,
minWidth: 200.00,
scale: 1.00,
scaleMobile: 1.00,
color: 0x0,
backgroundColor: 0x0,
size: 0.8
});
</script>
<script>feather.replace();</script>
</body>
</html>