|
|
<!DOCTYPE html> |
|
|
<html lang="en" class="h-full"> |
|
|
<head> |
|
|
<meta charset="UTF-8"> |
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
|
|
<title>Mysterious Void Explorer</title> |
|
|
<link rel="stylesheet" href="style.css"> |
|
|
<script src="https://cdn.tailwindcss.com"></script> |
|
|
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script> |
|
|
<script src="https://unpkg.com/feather-icons"></script> |
|
|
<script> |
|
|
tailwind.config = { |
|
|
theme: { |
|
|
extend: { |
|
|
colors: { |
|
|
primary: { |
|
|
500: 'transparent', |
|
|
}, |
|
|
secondary: { |
|
|
500: 'transparent', |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
</script> |
|
|
</head> |
|
|
<body class="min-h-screen bg-gradient-to-br from-gray-900 to-black text-white"> |
|
|
<custom-header></custom-header> |
|
|
|
|
|
<main class="container mx-auto px-4 py-16"> |
|
|
<div class="text-center mb-16"> |
|
|
<h1 class="text-5xl md:text-7xl font-bold mb-6 bg-clip-text text-transparent bg-gradient-to-r from-purple-400 via-pink-500 to-red-500"> |
|
|
Welcome to the Void |
|
|
</h1> |
|
|
<p class="text-xl md:text-2xl text-gray-400 max-w-3xl mx-auto"> |
|
|
Where undefined meets undefined in perfect harmony. Explore the mysteries of the undefined. |
|
|
</p> |
|
|
</div> |
|
|
|
|
|
<div class="grid grid-cols-1 md:grid-cols-3 gap-8 mb-16"> |
|
|
<div class="bg-gray-800 bg-opacity-50 rounded-xl p-8 border border-gray-700 hover:border-pink-500 transition-all"> |
|
|
<i data-feather="box" class="w-12 h-12 text-pink-500 mb-4"></i> |
|
|
<h3 class="text-2xl font-bold mb-3">Undefined Features</h3> |
|
|
<p class="text-gray-400">Discover what lies beyond the boundaries of definition.</p> |
|
|
</div> |
|
|
<div class="bg-gray-800 bg-opacity-50 rounded-xl p-8 border border-gray-700 hover:border-purple-500 transition-all"> |
|
|
<i data-feather="compass" class="w-12 h-12 text-purple-500 mb-4"></i> |
|
|
<h3 class="text-2xl font-bold mb-3">Void Navigation</h3> |
|
|
<p class="text-gray-400">Find your way through the uncharted territories of the undefined.</p> |
|
|
</div> |
|
|
<div class="bg-gray-800 bg-opacity-50 rounded-xl p-8 border border-gray-700 hover:border-red-500 transition-all"> |
|
|
<i data-feather="zap" class="w-12 h-12 text-red-500 mb-4"></i> |
|
|
<h3 class="text-2xl font-bold mb-3">Infinite Possibilities</h3> |
|
|
<p class="text-gray-400">Everything and nothing at the same time. The ultimate paradox.</p> |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
<div class="text-center"> |
|
|
<button class="px-8 py-4 bg-gradient-to-r from-purple-500 to-pink-500 rounded-full text-xl font-bold hover:shadow-lg hover:shadow-pink-500/30 transition-all"> |
|
|
Embrace the Void |
|
|
</button> |
|
|
</div> |
|
|
</main> |
|
|
|
|
|
<custom-footer></custom-footer> |
|
|
|
|
|
<script src="components/header.js"></script> |
|
|
<script src="components/footer.js"></script> |
|
|
<script src="script.js"></script> |
|
|
<script>feather.replace();</script> |
|
|
<script src="https://huggingface.co/deepsite/deepsite-badge.js"></script> |
|
|
</body> |
|
|
</html> |