File size: 3,061 Bytes
7a6aec8
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Psychedelic Visionarium ✨</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>
</head>
<body class="bg-black overflow-x-hidden">
    <psychedelic-navbar></psychedelic-navbar>
    
    <main>
        <!-- Hero Section -->
        <section class="relative min-h-screen flex items-center justify-center overflow-hidden">
            <div class="absolute inset-0 psychedelic-bg"></div>
            <div class="relative z-10 text-center px-4">
                <h1 class="text-6xl md:text-8xl font-bold mb-6 psychedelic-text animate-pulse">
                    PSYCHEDELIC<br>VISIONARIUM
                </h1>
                <p class="text-xl md:text-2xl mb-8 text-white/80 font-light">
                    Where reality melts into divine animated magic
                </p>
                <button class="psychedelic-btn px-8 py-4 text-lg font-semibold rounded-full transform hover:scale-105 transition-all duration-300">
                    Enter the Portal
                </button>
            </div>
        </section>

        <!-- Optical Illusions Gallery -->
        <section class="py-20 px-4">
            <div class="max-w-7xl mx-auto">
                <h2 class="text-4xl md:text-6xl font-bold text-center mb-16 psychedelic-text">Optical Wonders</h2>
                <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8" id="illusions-grid">
                    <!-- Illusions will be loaded dynamically -->
                </div>
            </div>
        </section>

        <!-- Interactive Canvas -->
        <section class="py-20 px-4 bg-gradient-to-b from-black to-purple-900/20">
            <div class="max-w-6xl mx-auto text-center">
                <h2 class="text-4xl md:text-6xl font-bold mb-8 psychedelic-text">Create Your Vision</h2>
                <div class="bg-black/50 rounded-2xl p-8 border border-purple-500/30">
                    <canvas id="psychedelic-canvas" class="w-full h-96 rounded-xl cursor-crosshair"></canvas>
                    <div class="flex justify-center gap-4 mt-6">
                        <button onclick="clearCanvas()" class="psychedelic-btn px-6 py-3 rounded-full">Clear</button>
                        <button onclick="toggleAnimation()" class="psychedelic-btn px-6 py-3 rounded-full">Animate</button>
                    </div>
                </div>
            </div>
        </section>
    </main>

    <psychedelic-footer></psychedelic-footer>

    <script src="components/navbar.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>