rotating-art-vortex / index.html
Thalesailun's picture
# Análise da Tecnologia: Rotor - Kinetic Cylindrical Gallery
6c573a9 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Rotating Art Vortex - 3D Kinetic Gallery</title>
<link rel="stylesheet" href="style.css">
<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>
<script src="components/navbar.js"></script>
<script src="components/footer.js"></script>
<script src="components/3dviewer.js"></script>
</head>
<body class="bg-gray-900 text-white">
<custom-navbar></custom-navbar>
<main class="container mx-auto px-4 py-12">
<section class="flex flex-col lg:flex-row gap-12 items-center">
<div class="lg:w-1/2 space-y-6">
<h1 class="text-4xl md:text-6xl font-bold bg-clip-text text-transparent bg-gradient-to-r from-purple-400 to-pink-600">
Rotating Art Vortex 🌀
</h1>
<p class="text-xl text-gray-300">
Explore art in a revolutionary 3D kinetic cylindrical gallery.
Immerse yourself in a dynamic visual experience.
</p>
<div class="flex gap-4">
<a href="/gallery.html" class="px-6 py-3 bg-pink-600 rounded-lg hover:bg-pink-700 transition-colors flex items-center gap-2">
<i data-feather="play"></i>
Start Exploring
</a>
<a href="/about.html" class="px-6 py-3 border border-pink-600 rounded-lg hover:bg-pink-900/30 transition-colors">
Learn More
</a>
</div>
</div>
<div class="lg:w-1/2 relative">
<div id="vanta-bg" class="absolute inset-0 opacity-70"></div>
<div class="relative z-10 h-96 w-full bg-black/30 rounded-2xl border border-gray-800 overflow-hidden">
<custom-3dviewer></custom-3dviewer>
</div>
</div>
</section>
<section class="mt-24">
<h2 class="text-2xl font-bold mb-8">Featured Collections</h2>
<div class="grid grid-cols-1 md:grid-cols-3 gap-6">
<div class="bg-gray-800/50 rounded-xl p-6 border border-gray-700 hover:border-pink-500 transition-colors">
<div class="h-48 mb-4 rounded-lg bg-gradient-to-br from-purple-500/20 to-pink-500/20"></div>
<h3 class="text-xl font-semibold mb-2">Digital Dreams</h3>
<p class="text-gray-400">Futuristic AI-generated artworks</p>
</div>
<div class="bg-gray-800/50 rounded-xl p-6 border border-gray-700 hover:border-pink-500 transition-colors">
<div class="h-48 mb-4 rounded-lg bg-gradient-to-br from-blue-500/20 to-cyan-500/20"></div>
<h3 class="text-xl font-semibold mb-2">Abstract Visions</h3>
<p class="text-gray-400">Mind-bending conceptual pieces</p>
</div>
<div class="bg-gray-800/50 rounded-xl p-6 border border-gray-700 hover:border-pink-500 transition-colors">
<div class="h-48 mb-4 rounded-lg bg-gradient-to-br from-yellow-500/20 to-red-500/20"></div>
<h3 class="text-xl font-semibold mb-2">Neon Nights</h3>
<p class="text-gray-400">Cyberpunk-inspired urban art</p>
</div>
</div>
</section>
</main>
<custom-footer></custom-footer>
<script src="script.js"></script>
<script>
feather.replace();
VANTA.GLOBE({
el: "#vanta-bg",
mouseControls: true,
touchControls: true,
gyroControls: false,
minHeight: 200.00,
minWidth: 200.00,
scale: 1.00,
scaleMobile: 1.00,
color: 0x7f46f5,
backgroundColor: 0x111827
});
</script>
<script src="https://deepsite.hf.co/deepsite-badge.js"></script>
</body>
</html>