File size: 4,772 Bytes
f7be4c3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
cafe130
 
 
 
f7be4c3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
90
91
92
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Algorithmic Harmony Maestro - AI Music Optimization</title>
    <link rel="icon" type="image/x-icon" href="/static/favicon.ico">
    <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 src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.globe.min.js"></script>
</head>
<body class="bg-gradient-to-br from-purple-900 via-blue-900 to-indigo-900 min-h-screen">
    <custom-navbar></custom-navbar>
    
    <!-- Hero Section -->
    <section id="hero" class="relative min-h-screen flex items-center justify-center overflow-hidden">
        <div class="absolute inset-0 z-0" id="vanta-bg"></div>
        <div class="relative z-10 text-center text-white px-4 max-w-4xl mx-auto">
            <h1 class="text-5xl md:text-7xl font-bold mb-6 bg-gradient-to-r from-purple-400 to-pink-400 bg-clip-text text-transparent">
                Algorithmic Harmony Maestro
            </h1>
            <p class="text-xl md:text-2xl mb-8 text-gray-200">
                Transform your musical vision into algorithm-friendly hits with AI-powered optimization
            </p>
            <div class="flex flex-col sm:flex-row gap-4 justify-center">
                <a href="/generator.html" class="bg-purple-600 hover:bg-purple-700 text-white px-8 py-4 rounded-lg font-semibold text-lg transition-all duration-300 transform hover:scale-105">
                    <i data-feather="play" class="inline mr-2"></i>
                    Start Creating
                </a>
                <a href="/features.html" class="border-2 border-white hover:bg-white hover:text-purple-900 text-white px-8 py-4 rounded-lg font-semibold text-lg transition-all duration-300">
                    Learn More
                </a>
            </div>
        </div>
    </section>

    <!-- Features Overview -->
    <section class="py-20 bg-white/5 backdrop-blur-sm">
        <div class="container mx-auto px-4">
            <h2 class="text-3xl md:text-4xl font-bold text-center text-white mb-12">
                AI-Powered Music Creation Pipeline
            </h2>
            <div class="grid md:grid-cols-3 gap-8">
                <div class="bg-gradient-to-br from-purple-600/20 to-blue-600/20 p-6 rounded-xl border border-white/10">
                    <div class="w-12 h-12 bg-purple-500 rounded-lg flex items-center justify-center mb-4">
                    <i data-feather="message-square" class="text-white"></i>
                </div>
                <h3 class="text-xl font-semibold text-white mb-2">Prompt Interpreter</h3>
                <p class="text-gray-300">Natural language to structured music metadata with LLM intelligence</p>
            </div>
            <div class="bg-gradient-to-br from-blue-600/20 to-indigo-600/20 p-6 rounded-xl border border-white/10">
                <div class="w-12 h-12 bg-blue-500 rounded-lg flex items-center justify-center mb-4">
                    <i data-feather="music" class="text-white"></i>
                </div>
                <h3 class="text-xl font-semibold text-white mb-2">AI Composition</h3>
                <p class="text-gray-300">Generate mastered tracks using Suno, Udio, and Mubert APIs</p>
            </div>
            <div class="bg-gradient-to-br from-indigo-600/20 to-purple-600/20 p-6 rounded-xl border border-white/10">
                    <div class="w-12 h-12 bg-indigo-500 rounded-lg flex items-center justify-center mb-4">
                    <i data-feather="trending-up" class="text-white"></i>
                </div>
                <h3 class="text-xl font-semibold text-white mb-2">Algorithm Fit</h3>
                <p class="text-gray-300">Optimize for Spotify, SoundCloud algorithms with ML predictions</p>
            </div>
        </div>
    </section>

    <custom-footer></custom-footer>
        <script src="components/navbar.js"></script>
        <script src="components/footer.js"></script>
        <script src="script.js"></script>
<script>
        feather.replace();
        // Initialize Vanta.js background
        VANTA.GLOBE({
            el: "#vanta-bg",
            mouseControls: true,
            touchControls: true,
            gyroControls: false,
            minHeight: 200.00,
            minWidth: 200.00,
            scale: 1.00,
            scaleMobile: 1.00,
            color: 0x7c3aed,
            backgroundColor: 0x0
        });
    </script>
<script src="https://deepsite.hf.co/deepsite-badge.js"></script>
</body>
</html>