File size: 4,206 Bytes
6c573a9
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<!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>