Spaces:
Running
Running
add a description
Browse files- README.md +8 -5
- index.html +124 -18
README.md
CHANGED
|
@@ -1,10 +1,13 @@
|
|
| 1 |
---
|
| 2 |
-
title: Colorful Void Explorer
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
sdk: static
|
| 7 |
pinned: false
|
|
|
|
|
|
|
| 8 |
---
|
| 9 |
|
| 10 |
-
|
|
|
|
|
|
| 1 |
---
|
| 2 |
+
title: Colorful Void Explorer π
|
| 3 |
+
colorFrom: gray
|
| 4 |
+
colorTo: green
|
| 5 |
+
emoji: π³
|
| 6 |
sdk: static
|
| 7 |
pinned: false
|
| 8 |
+
tags:
|
| 9 |
+
- deepsite-v3
|
| 10 |
---
|
| 11 |
|
| 12 |
+
# Welcome to your new DeepSite project!
|
| 13 |
+
This project was created with [DeepSite](https://deepsite.hf.co).
|
index.html
CHANGED
|
@@ -1,19 +1,125 @@
|
|
| 1 |
-
<!
|
| 2 |
-
<html>
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 19 |
</html>
|
|
|
|
| 1 |
+
<!DOCTYPE html>
|
| 2 |
+
<html lang="en">
|
| 3 |
+
<head>
|
| 4 |
+
<meta charset="UTF-8">
|
| 5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 6 |
+
<title>Colorful Void Explorer</title>
|
| 7 |
+
<script src="https://cdn.tailwindcss.com"></script>
|
| 8 |
+
<script src="https://unpkg.com/feather-icons"></script>
|
| 9 |
+
<script src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.globe.min.js"></script>
|
| 10 |
+
<style>
|
| 11 |
+
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap');
|
| 12 |
+
|
| 13 |
+
body {
|
| 14 |
+
font-family: 'Space Grotesk', sans-serif;
|
| 15 |
+
overflow-x: hidden;
|
| 16 |
+
}
|
| 17 |
+
|
| 18 |
+
.gradient-bg {
|
| 19 |
+
background: linear-gradient(135deg, #6e00ff 0%, #ff00c8 50%, #ff7b00 100%);
|
| 20 |
+
background-size: 200% 200%;
|
| 21 |
+
animation: gradientMove 15s ease infinite;
|
| 22 |
+
}
|
| 23 |
+
|
| 24 |
+
@keyframes gradientMove {
|
| 25 |
+
0% { background-position: 0% 50%; }
|
| 26 |
+
50% { background-position: 100% 50%; }
|
| 27 |
+
100% { background-position: 0% 50%; }
|
| 28 |
+
}
|
| 29 |
+
|
| 30 |
+
.floating {
|
| 31 |
+
animation: floating 6s ease-in-out infinite;
|
| 32 |
+
}
|
| 33 |
+
|
| 34 |
+
@keyframes floating {
|
| 35 |
+
0% { transform: translateY(0px); }
|
| 36 |
+
50% { transform: translateY(-20px); }
|
| 37 |
+
100% { transform: translateY(0px); }
|
| 38 |
+
}
|
| 39 |
+
</style>
|
| 40 |
+
</head>
|
| 41 |
+
<body class="min-h-screen text-white" id="vanta-bg">
|
| 42 |
+
<div class="container mx-auto px-4 py-16 relative z-10">
|
| 43 |
+
<header class="flex justify-between items-center mb-20">
|
| 44 |
+
<div class="flex items-center space-x-2">
|
| 45 |
+
<div class="w-10 h-10 rounded-full gradient-bg"></div>
|
| 46 |
+
<span class="text-xl font-bold bg-clip-text text-transparent gradient-bg">VOID</span>
|
| 47 |
+
</div>
|
| 48 |
+
<nav class="hidden md:flex space-x-8">
|
| 49 |
+
<a href="#" class="hover:text-gray-300 transition">Explore</a>
|
| 50 |
+
<a href="#" class="hover:text-gray-300 transition">Create</a>
|
| 51 |
+
<a href="#" class="hover:text-gray-300 transition">About</a>
|
| 52 |
+
<a href="#" class="hover:text-gray-300 transition">Connect</a>
|
| 53 |
+
</nav>
|
| 54 |
+
<button class="md:hidden">
|
| 55 |
+
<i data-feather="menu"></i>
|
| 56 |
+
</button>
|
| 57 |
+
</header>
|
| 58 |
+
|
| 59 |
+
<main class="max-w-4xl mx-auto text-center">
|
| 60 |
+
<h1 class="text-5xl md:text-7xl font-bold mb-6 leading-tight">
|
| 61 |
+
Explore the <span class="gradient-text">Undefined</span> Dimensions
|
| 62 |
+
</h1>
|
| 63 |
+
<p class="text-xl md:text-2xl text-gray-300 mb-12 max-w-2xl mx-auto">
|
| 64 |
+
Where colors don't exist and everything is possible. Dive into the void of undefined possibilities.
|
| 65 |
+
</p>
|
| 66 |
+
|
| 67 |
+
<div class="flex flex-col sm:flex-row justify-center space-y-4 sm:space-y-0 sm:space-x-6">
|
| 68 |
+
<button class="px-8 py-4 rounded-full gradient-bg font-bold hover:opacity-90 transition">
|
| 69 |
+
Begin Exploration
|
| 70 |
+
</button>
|
| 71 |
+
<button class="px-8 py-4 bg-white bg-opacity-10 rounded-full font-bold hover:bg-opacity-20 transition">
|
| 72 |
+
Learn More
|
| 73 |
+
</button>
|
| 74 |
+
</div>
|
| 75 |
+
</main>
|
| 76 |
+
|
| 77 |
+
<div class="mt-32 grid grid-cols-1 md:grid-cols-3 gap-8">
|
| 78 |
+
<div class="bg-white bg-opacity-5 backdrop-blur-lg p-8 rounded-2xl hover:bg-opacity-10 transition">
|
| 79 |
+
<div class="w-14 h-14 rounded-full gradient-bg flex items-center justify-center mb-6">
|
| 80 |
+
<i data-feather="compass" class="w-6 h-6"></i>
|
| 81 |
+
</div>
|
| 82 |
+
<h3 class="text-xl font-bold mb-3">Endless Exploration</h3>
|
| 83 |
+
<p class="text-gray-400">Navigate through undefined dimensions where the rules of design don't apply.</p>
|
| 84 |
+
</div>
|
| 85 |
+
|
| 86 |
+
<div class="bg-white bg-opacity-5 backdrop-blur-lg p-8 rounded-2xl hover:bg-opacity-10 transition">
|
| 87 |
+
<div class="w-14 h-14 rounded-full gradient-bg flex items-center justify-center mb-6">
|
| 88 |
+
<i data-feather="palette" class="w-6 h-6"></i>
|
| 89 |
+
</div>
|
| 90 |
+
<h3 class="text-xl font-bold mb-3">Colorless Creativity</h3>
|
| 91 |
+
<p class="text-gray-400">Create without constraints in a space where colors are undefined.</p>
|
| 92 |
+
</div>
|
| 93 |
+
|
| 94 |
+
<div class="bg-white bg-opacity-5 backdrop-blur-lg p-8 rounded-2xl hover:bg-opacity-10 transition">
|
| 95 |
+
<div class="w-14 h-14 rounded-full gradient-bg flex items-center justify-center mb-6">
|
| 96 |
+
<i data-feather="users" class="w-6 h-6"></i>
|
| 97 |
+
</div>
|
| 98 |
+
<h3 class="text-xl font-bold mb-3">Community Void</h3>
|
| 99 |
+
<p class="text-gray-400">Connect with other explorers in this undefined space of pure potential.</p>
|
| 100 |
+
</div>
|
| 101 |
+
</div>
|
| 102 |
+
|
| 103 |
+
<div class="absolute bottom-8 left-0 right-0 text-center text-gray-500 text-sm">
|
| 104 |
+
<p>Float through the undefined dimensions</p>
|
| 105 |
+
</div>
|
| 106 |
+
</div>
|
| 107 |
+
|
| 108 |
+
<script>
|
| 109 |
+
VANTA.GLOBE({
|
| 110 |
+
el: "#vanta-bg",
|
| 111 |
+
mouseControls: true,
|
| 112 |
+
touchControls: true,
|
| 113 |
+
gyroControls: false,
|
| 114 |
+
minHeight: 200.00,
|
| 115 |
+
minWidth: 200.00,
|
| 116 |
+
scale: 1.00,
|
| 117 |
+
scaleMobile: 1.00,
|
| 118 |
+
color: 0x0,
|
| 119 |
+
backgroundColor: 0x0,
|
| 120 |
+
size: 0.8
|
| 121 |
+
});
|
| 122 |
+
</script>
|
| 123 |
+
<script>feather.replace();</script>
|
| 124 |
+
</body>
|
| 125 |
</html>
|