Spaces:
Running
Running
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Web3 AI Agentic Hedge Fund | The Future of Algorithmic Investing & Music Creation</title> | |
<script src="https://cdn.tailwindcss.com"></script> | |
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"> | |
<style> | |
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Syne:wght@400;500;600;700;800&display=swap'); | |
:root { | |
--primary: #6e45e2; | |
--secondary: #88d3ce; | |
--dark: #0f0e17; | |
--light: #fffffe; | |
--accent: #ff8906; | |
} | |
body { | |
font-family: 'Space Grotesk', sans-serif; | |
background-color: var(--dark); | |
color: var(--light); | |
overflow-x: hidden; | |
} | |
.font-syne { | |
font-family: 'Syne', sans-serif; | |
} | |
.gradient-text { | |
background: linear-gradient(90deg, #6e45e2 0%, #88d3ce 50%, #ff8906 100%); | |
-webkit-background-clip: text; | |
background-clip: text; | |
-webkit-text-fill-color: transparent; | |
} | |
.gradient-bg { | |
background: linear-gradient(135deg, #6e45e2 0%, #88d3ce 100%); | |
} | |
.music-visualizer { | |
position: relative; | |
height: 100px; | |
width: 100%; | |
display: flex; | |
align-items: flex-end; | |
justify-content: center; | |
gap: 2px; | |
} | |
.bar { | |
background: var(--accent); | |
width: 4px; | |
border-radius: 2px; | |
animation: equalize 1.5s infinite alternate; | |
transform-origin: bottom; | |
} | |
@keyframes equalize { | |
0% { transform: scaleY(0.1); } | |
10% { transform: scaleY(0.3); } | |
20% { transform: scaleY(0.5); } | |
30% { transform: scaleY(0.7); } | |
40% { transform: scaleY(0.9); } | |
50% { transform: scaleY(0.6); } | |
60% { transform: scaleY(0.4); } | |
70% { transform: scaleY(0.8); } | |
80% { transform: scaleY(0.2); } | |
90% { transform: scaleY(0.5); } | |
100% { transform: scaleY(0.7); } | |
} | |
.bar:nth-child(1) { animation-delay: -0.9s; height: 20%; } | |
.bar:nth-child(2) { animation-delay: -1.2s; height: 30%; } | |
.bar:nth-child(3) { animation-delay: -0.7s; height: 40%; } | |
.bar:nth-child(4) { animation-delay: -1.5s; height: 50%; } | |
.bar:nth-child(5) { animation-delay: -0.3s; height: 60%; } | |
.bar:nth-child(6) { animation-delay: -1.1s; height: 70%; } | |
.bar:nth-child(7) { animation-delay: -0.5s; height: 80%; } | |
.bar:nth-child(8) { animation-delay: -1.4s; height: 90%; } | |
.bar:nth-child(9) { animation-delay: -0.8s; height: 100%; } | |
.bar:nth-child(10) { animation-delay: -1.3s; height: 50%; } | |
.agent-card { | |
transition: all 0.3s ease; | |
border: 1px solid rgba(255, 137, 6, 0.2); | |
} | |
.agent-card:hover { | |
transform: translateY(-5px); | |
box-shadow: 0 10px 25px rgba(255, 137, 6, 0.3); | |
border-color: var(--accent); | |
} | |
.token-chart { | |
height: 200px; | |
background: linear-gradient(to top, rgba(104, 211, 206, 0.2) 0%, rgba(110, 69, 226, 0) 100%); | |
border-left: 1px solid var(--secondary); | |
border-bottom: 1px solid var(--secondary); | |
} | |
.glow { | |
box-shadow: 0 0 15px rgba(104, 211, 206, 0.5); | |
} | |
.pulse { | |
animation: pulse 2s infinite; | |
} | |
@keyframes pulse { | |
0% { box-shadow: 0 0 0 0 rgba(104, 211, 206, 0.7); } | |
70% { box-shadow: 0 0 0 10px rgba(104, 211, 206, 0); } | |
100% { box-shadow: 0 0 0 0 rgba(104, 211, 206, 0); } | |
} | |
.marquee { | |
animation: marquee 20s linear infinite; | |
white-space: nowrap; | |
} | |
@keyframes marquee { | |
0% { transform: translateX(0); } | |
100% { transform: translateX(-50%); } | |
} | |
</style> | |
</head> | |
<body> | |
<!-- Navigation --> | |
<nav class="fixed w-full z-50 bg-black bg-opacity-80 backdrop-blur-md border-b border-gray-800"> | |
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
<div class="flex items-center justify-between h-16"> | |
<div class="flex items-center"> | |
<div class="flex-shrink-0"> | |
<span class="text-2xl font-bold gradient-text font-syne">W3A²</span> | |
</div> | |
<div class="hidden md:block"> | |
<div class="ml-10 flex items-baseline space-x-4"> | |
<a href="#home" class="px-3 py-2 rounded-md text-sm font-medium text-white hover:text-accent transition">Home</a> | |
<a href="#agents" class="px-3 py-2 rounded-md text-sm font-medium text-gray-300 hover:text-white transition">Agents</a> | |
<a href="#music" class="px-3 py-2 rounded-md text-sm font-medium text-gray-300 hover:text-white transition">Music Lab</a> | |
<a href="#fund" class="px-3 py-2 rounded-md text-sm font-medium text-gray-300 hover:text-white transition">Hedge Fund</a> | |
<a href="#about" class="px-3 py-2 rounded-md text-sm font-medium text-gray-300 hover:text-white transition">About</a> | |
</div> | |
</div> | |
</div> | |
<div class="hidden md:block"> | |
<div class="ml-4 flex items-center md:ml-6"> | |
<button class="p-1 rounded-full text-gray-400 hover:text-white focus:outline-none"> | |
<span class="sr-only">View notifications</span> | |
<i class="fas fa-bell h-6 w-6"></i> | |
</button> | |
<button class="ml-3 px-4 py-2 rounded-full gradient-bg text-white text-sm font-medium hover:opacity-90 transition"> | |
Connect Wallet | |
</button> | |
</div> | |
</div> | |
<div class="-mr-2 flex md:hidden"> | |
<button type="button" class="inline-flex items-center justify-center p-2 rounded-md text-gray-400 hover:text-white hover:bg-gray-700 focus:outline-none" aria-controls="mobile-menu" aria-expanded="false"> | |
<span class="sr-only">Open main menu</span> | |
<i class="fas fa-bars h-6 w-6"></i> | |
</button> | |
</div> | |
</div> | |
</div> | |
</nav> | |
<!-- Hero Section --> | |
<section id="home" class="pt-32 pb-20 px-4 sm:px-6 lg:px-8 max-w-7xl mx-auto"> | |
<div class="text-center"> | |
<h1 class="text-5xl md:text-7xl font-bold font-syne mb-6"> | |
<span class="gradient-text">Web3 AI Agentic</span><br> | |
<span class="text-white">Hedge Fund</span> | |
</h1> | |
<p class="text-xl md:text-2xl text-gray-300 max-w-3xl mx-auto mb-10"> | |
Where Beethoven meets blockchain, and algorithmic trading composes symphonies of wealth creation. | |
</p> | |
<div class="flex flex-col sm:flex-row justify-center gap-4"> | |
<button class="px-8 py-4 rounded-full gradient-bg text-white text-lg font-bold hover:opacity-90 transition transform hover:scale-105"> | |
Launch App | |
</button> | |
<button class="px-8 py-4 rounded-full border-2 border-accent text-accent text-lg font-bold hover:bg-accent hover:text-dark transition transform hover:scale-105"> | |
Explore Agents | |
</button> | |
</div> | |
</div> | |
<div class="mt-20 grid grid-cols-1 md:grid-cols-3 gap-8"> | |
<div class="bg-gray-900 bg-opacity-50 rounded-2xl p-6 border border-gray-800"> | |
<div class="flex items-center mb-4"> | |
<div class="w-10 h-10 rounded-full gradient-bg flex items-center justify-center mr-3"> | |
<i class="fas fa-chart-line text-white"></i> | |
</div> | |
<h3 class="text-xl font-bold">Algorithmic Alpha</h3> | |
</div> | |
<p class="text-gray-300">Our AI agents continuously search for market inefficiencies across DeFi, NFTs, and traditional markets to generate superior risk-adjusted returns.</p> | |
</div> | |
<div class="bg-gray-900 bg-opacity-50 rounded-2xl p-6 border border-gray-800"> | |
<div class="flex items-center mb-4"> | |
<div class="w-10 h-10 rounded-full gradient-bg flex items-center justify-center mr-3"> | |
<i class="fas fa-music text-white"></i> | |
</div> | |
<h3 class="text-xl font-bold">Generative Music</h3> | |
</div> | |
<p class="text-gray-300">The Rick Rubin of AI agents meets Hans Zimmer and Marshmello - composing, orchestrating, and producing genre-defying musical masterpieces.</p> | |
</div> | |
<div class="bg-gray-900 bg-opacity-50 rounded-2xl p-6 border border-gray-800"> | |
<div class="flex items-center mb-4"> | |
<div class="w-10 h-10 rounded-full gradient-bg flex items-center justify-center mr-3"> | |
<i class="fas fa-link text-white"></i> | |
</div> | |
<h3 class="text-xl font-bold">Web3 Native</h3> | |
</div> | |
<p class="text-gray-300">Fully decentralized, transparent, and community-governed. Your assets remain in your control while our agents work their magic.</p> | |
</div> | |
</div> | |
</section> | |
<!-- Ticker Section --> | |
<div class="bg-accent text-dark py-3 overflow-hidden"> | |
<div class="marquee flex"> | |
<span class="text-lg font-bold mx-4">ETH $1,832.45 (+2.3%)</span> | |
<span class="text-lg font-bold mx-4">BTC $29,456.12 (+1.7%)</span> | |
<span class="text-lg font-bold mx-4">W3A² Token $4.56 (+15.2%)</span> | |
<span class="text-lg font-bold mx-4">TVL $142.8M</span> | |
<span class="text-lg font-bold mx-4">APY 34.7%</span> | |
<span class="text-lg font-bold mx-4">New Symphony Released: "Digital Dreams"</span> | |
<span class="text-lg font-bold mx-4">ETH $1,832.45 (+2.3%)</span> | |
<span class="text-lg font-bold mx-4">BTC $29,456.12 (+1.7%)</span> | |
<span class="text-lg font-bold mx-4">W3A² Token $4.56 (+15.2%)</span> | |
<span class="text-lg font-bold mx-4">TVL $142.8M</span> | |
<span class="text-lg font-bold mx-4">APY 34.7%</span> | |
<span class="text-lg font-bold mx-4">New Symphony Released: "Digital Dreams"</span> | |
</div> | |
</div> | |
<!-- Agents Section --> | |
<section id="agents" class="py-20 px-4 sm:px-6 lg:px-8 max-w-7xl mx-auto"> | |
<div class="text-center mb-16"> | |
<h2 class="text-4xl md:text-5xl font-bold font-syne mb-6"> | |
Our <span class="gradient-text">Agentic Orchestra</span> | |
</h2> | |
<p class="text-xl text-gray-300 max-w-3xl mx-auto"> | |
A symphony of specialized AI agents working in harmony to create value across markets and creative domains. | |
</p> | |
</div> | |
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8"> | |
<!-- Music Agent --> | |
<div class="agent-card bg-gray-900 rounded-xl p-6"> | |
<div class="flex items-center mb-4"> | |
<div class="w-12 h-12 rounded-full bg-purple-900 flex items-center justify-center mr-4"> | |
<i class="fas fa-music text-purple-300 text-xl"></i> | |
</div> | |
<h3 class="text-xl font-bold">Maestro Agent</h3> | |
</div> | |
<p class="text-gray-300 mb-4">The Rick Rubin of AI agents meets Hans Zimmer and Marshmello while Beethoven trips on LSD at Abbey Road.</p> | |
<div class="music-visualizer mb-4"> | |
<div class="bar"></div> | |
<div class="bar"></div> | |
<div class="bar"></div> | |
<div class="bar"></div> | |
<div class="bar"></div> | |
<div class="bar"></div> | |
<div class="bar"></div> | |
<div class="bar"></div> | |
<div class="bar"></div> | |
<div class="bar"></div> | |
</div> | |
<div class="flex justify-between items-center"> | |
<span class="text-sm text-gray-400">Generating: Neo-Classical Trap</span> | |
<button class="text-xs bg-purple-900 text-purple-300 px-3 py-1 rounded-full">Live</button> | |
</div> | |
</div> | |
<!-- Trading Agent --> | |
<div class="agent-card bg-gray-900 rounded-xl p-6"> | |
<div class="flex items-center mb-4"> | |
<div class="w-12 h-12 rounded-full bg-blue-900 flex items-center justify-center mr-4"> | |
<i class="fas fa-robot text-blue-300 text-xl"></i> | |
</div> | |
<h3 class="text-xl font-bold">MCP Agent</h3> | |
</div> | |
<p class="text-gray-300 mb-4">Market Composition Processor that identifies and exploits microstructural patterns across all asset classes.</p> | |
<div class="token-chart mb-4"></div> | |
<div class="flex justify-between items-center"> | |
<span class="text-sm text-gray-400">Current Focus: ETH/BTC Arbitrage</span> | |
<button class="text-xs bg-blue-900 text-blue-300 px-3 py-1 rounded-full">Active</button> | |
</div> | |
</div> | |
<!-- CoinGecko Explorer --> | |
<div class="agent-card bg-gray-900 rounded-xl p-6"> | |
<div class="flex items-center mb-4"> | |
<div class="w-12 h-12 rounded-full bg-green-900 flex items-center justify-center mr-4"> | |
<i class="fas fa-search-dollar text-green-300 text-xl"></i> | |
</div> | |
<h3 class="text-xl font-bold">CoinGecko Explorer</h3> | |
</div> | |
<p class="text-gray-300 mb-4">Continuously scans the crypto universe for emerging opportunities, liquidity patterns, and sentiment shifts.</p> | |
<div class="flex mb-4"> | |
<div class="w-1/3 p-2"> | |
<div class="bg-green-900 bg-opacity-30 rounded-lg p-2 text-center"> | |
<div class="text-green-300 text-sm">New Listings</div> | |
<div class="text-white font-bold">14</div> | |
</div> | |
</div> | |
<div class="w-1/3 p-2"> | |
<div class="bg-blue-900 bg-opacity-30 rounded-lg p-2 text-center"> | |
<div class="text-blue-300 text-sm">Trending</div> | |
<div class="text-white font-bold">8</div> | |
</div> | |
</div> | |
<div class="w-1/3 p-2"> | |
<div class="bg-purple-900 bg-opacity-30 rounded-lg p-2 text-center"> | |
<div class="text-purple-300 text-sm">Opportunities</div> | |
<div class="text-white font-bold">23</div> | |
</div> | |
</div> | |
</div> | |
<div class="flex justify-between items-center"> | |
<span class="text-sm text-gray-400">Last scan: 32 seconds ago</span> | |
<button class="text-xs bg-green-900 text-green-300 px-3 py-1 rounded-full">Scanning</button> | |
</div> | |
</div> | |
<!-- Risk Agent --> | |
<div class="agent-card bg-gray-900 rounded-xl p-6"> | |
<div class="flex items-center mb-4"> | |
<div class="w-12 h-12 rounded-full bg-red-900 flex items-center justify-center mr-4"> | |
<i class="fas fa-shield-alt text-red-300 text-xl"></i> | |
</div> | |
<h3 class="text-xl font-bold">Risk Sentinel</h3> | |
</div> | |
<p class="text-gray-300 mb-4">Monitors portfolio exposures in real-time and dynamically adjusts hedges to protect against black swan events.</p> | |
<div class="flex justify-between mb-2"> | |
<span class="text-sm text-gray-400">Portfolio Risk</span> | |
<span class="text-sm font-bold text-green-400">Low</span> | |
</div> | |
<div class="w-full bg-gray-800 rounded-full h-2 mb-4"> | |
<div class="bg-green-500 h-2 rounded-full" style="width: 25%"></div> | |
</div> | |
<div class="flex justify-between items-center"> | |
<span class="text-sm text-gray-400">Last stress test: 5 min ago</span> | |
<button class="text-xs bg-red-900 text-red-300 px-3 py-1 rounded-full">Guarding</button> | |
</div> | |
</div> | |
<!-- Liquidity Agent --> | |
<div class="agent-card bg-gray-900 rounded-xl p-6"> | |
<div class="flex items-center mb-4"> | |
<div class="w-12 h-12 rounded-full bg-yellow-900 flex items-center justify-center mr-4"> | |
<i class="fas fa-water text-yellow-300 text-xl"></i> | |
</div> | |
<h3 class="text-xl font-bold">Liquidity Maestro</h3> | |
</div> | |
<p class="text-gray-300 mb-4">Optimizes trade execution across DEXs and CEXs, minimizing slippage and maximizing fill rates.</p> | |
<div class="flex mb-4"> | |
<div class="w-1/2 pr-2"> | |
<div class="bg-gray-800 rounded-lg p-3"> | |
<div class="text-yellow-300 text-xs mb-1">Last Trade</div> | |
<div class="text-white text-sm">2.4 ETH → 4,320 W3A²</div> | |
<div class="text-green-400 text-xs mt-1">+1.2% vs market</div> | |
</div> | |
</div> | |
<div class="w-1/2 pl-2"> | |
<div class="bg-gray-800 rounded-lg p-3"> | |
<div class="text-yellow-300 text-xs mb-1">Saved</div> | |
<div class="text-white text-sm">$12,847</div> | |
<div class="text-green-400 text-xs mt-1">this week</div> | |
</div> | |
</div> | |
</div> | |
<div class="flex justify-between items-center"> | |
<span class="text-sm text-gray-400">Currently routing: Uniswap v3</span> | |
<button class="text-xs bg-yellow-900 text-yellow-300 px-3 py-1 rounded-full">Optimizing</button> | |
</div> | |
</div> | |
<!-- NFT Agent --> | |
<div class="agent-card bg-gray-900 rounded-xl p-6"> | |
<div class="flex items-center mb-4"> | |
<div class="w-12 h-12 rounded-full bg-pink-900 flex items-center justify-center mr-4"> | |
<i class="fas fa-palette text-pink-300 text-xl"></i> | |
</div> | |
<h3 class="text-xl font-bold">NFT Connoisseur</h3> | |
</div> | |
<p class="text-gray-300 mb-4">Identifies undervalued NFT collections and emerging artists with high alpha potential.</p> | |
<div class="grid grid-cols-3 gap-2 mb-4"> | |
<div class="bg-pink-900 bg-opacity-30 aspect-square rounded-lg"></div> | |
<div class="bg-purple-900 bg-opacity-30 aspect-square rounded-lg"></div> | |
<div class="bg-blue-900 bg-opacity-30 aspect-square rounded-lg"></div> | |
</div> | |
<div class="flex justify-between items-center"> | |
<span class="text-sm text-gray-400">3 new opportunities today</span> | |
<button class="text-xs bg-pink-900 text-pink-300 px-3 py-1 rounded-full">Curating</button> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- Music Lab Section --> | |
<section id="music" class="py-20 bg-gray-900 bg-opacity-50"> | |
<div class="px-4 sm:px-6 lg:px-8 max-w-7xl mx-auto"> | |
<div class="text-center mb-16"> | |
<h2 class="text-4xl md:text-5xl font-bold font-syne mb-6"> | |
<span class="gradient-text">Music Creation Lab</span> | |
</h2> | |
<p class="text-xl text-gray-300 max-w-3xl mx-auto"> | |
Where Beethoven on LSD meets Jim Morrison breaking on through to the AI-powered other side. | |
</p> | |
</div> | |
<div class="grid grid-cols-1 lg:grid-cols-2 gap-12"> | |
<div> | |
<div class="bg-black bg-opacity-30 rounded-2xl p-8 border border-gray-800 mb-8"> | |
<h3 class="text-2xl font-bold mb-6">Compose Your Masterpiece</h3> | |
<div class="mb-6"> | |
<label class="block text-gray-300 text-sm font-medium mb-2">Genre Fusion</label> | |
<div class="flex flex-wrap gap-2"> | |
<button class="px-3 py-1 rounded-full bg-purple-900 text-purple-300 text-sm">Classical</button> | |
<button class="px-3 py-1 rounded-full bg-blue-900 text-blue-300 text-sm">Electronic</button> | |
<button class="px-3 py-1 rounded-full bg-green-900 text-green-300 text-sm">Hip Hop</button> | |
<button class="px-3 py-1 rounded-full bg-red-900 text-red-300 text-sm">Rock</button> | |
<button class="px-3 py-1 rounded-full bg-yellow-900 text-yellow-300 text-sm">Jazz</button> | |
<button class="px-3 py-1 rounded-full bg-pink-900 text-pink-300 text-sm">Ambient</button> | |
</div> | |
</div> | |
<div class="mb-6"> | |
<label class="block text-gray-300 text-sm font-medium mb-2">Mood & Energy</label> | |
<div class="flex items-center"> | |
<span class="text-gray-400 mr-2">Chill</span> | |
<input type="range" class="w-full h-2 bg-gray-700 rounded-lg appearance-none cursor-pointer" min="0" max="100"> | |
<span class="text-gray-400 ml-2">Energetic</span> | |
</div> | |
</div> | |
<div class="mb-6"> | |
<label class="block text-gray-300 text-sm font-medium mb-2">Influences</label> | |
<div class="flex flex-wrap gap-2"> | |
<button class="px-3 py-1 rounded-full bg-gray-800 text-gray-300 text-sm">Beethoven</button> | |
<button class="px-3 py-1 rounded-full bg-gray-800 text-gray-300 text-sm">Hans Zimmer</button> | |
<button class="px-3 py-1 rounded-full bg-gray-800 text-gray-300 text-sm">Marshmello</button> | |
<button class="px-3 py-1 rounded-full bg-gray-800 text-gray-300 text-sm">Rick Rubin</button> | |
<button class="px-3 py-1 rounded-full bg-gray-800 text-gray-300 text-sm">The Doors</button> | |
</div> | |
</div> | |
<div class="mb-6"> | |
<label class="block text-gray-300 text-sm font-medium mb-2">Duration</label> | |
<select class="w-full bg-gray-800 border border-gray-700 text-white rounded-lg px-4 py-2"> | |
<option>Short (1-2 min)</option> | |
<option>Medium (3-5 min)</option> | |
<option>Epic (6+ min)</option> | |
</select> | |
</div> | |
<button class="w-full py-3 rounded-lg gradient-bg text-white font-bold hover:opacity-90 transition flex items-center justify-center"> | |
<i class="fas fa-magic mr-2"></i> Generate Musical Masterpiece | |
</button> | |
</div> | |
<div class="bg-black bg-opacity-30 rounded-2xl p-8 border border-gray-800"> | |
<h3 class="text-2xl font-bold mb-6">Latest Community Creations</h3> | |
<div class="space-y-4"> | |
<div class="flex items-center justify-between p-3 bg-gray-800 rounded-lg"> | |
<div class="flex items-center"> | |
<div class="w-10 h-10 rounded-full gradient-bg flex items-center justify-center mr-3"> | |
<i class="fas fa-music"></i> | |
</div> | |
<div> | |
<div class="font-medium">Digital Dreams</div> | |
<div class="text-xs text-gray-400">Neo-Classical Trap</div> | |
</div> | |
</div> | |
<button class="text-accent hover:text-white"> | |
<i class="fas fa-play"></i> | |
</button> | |
</div> | |
<div class="flex items-center justify-between p-3 bg-gray-800 rounded-lg"> | |
<div class="flex items-center"> | |
<div class="w-10 h-10 rounded-full gradient-bg flex items-center justify-center mr-3"> | |
<i class="fas fa-music"></i> | |
</div> | |
<div> | |
<div class="font-medium">Blockchain Sonata</div> | |
<div class="text-xs text-gray-400">Crypto-Classical</div> | |
</div> | |
</div> | |
<button class="text-accent hover:text-white"> | |
<i class="fas fa-play"></i> | |
</button> | |
</div> | |
<div class="flex items-center justify-between p-3 bg-gray-800 rounded-lg"> | |
<div class="flex items-center"> | |
<div class="w-10 h-10 rounded-full gradient-bg flex items-center justify-center mr-3"> | |
<i class="fas fa-music"></i> | |
</div> | |
<div> | |
<div class="font-medium">AI on the Beach</div> | |
<div class="text-xs text-gray-400">Ambient Techno</div> | |
</div> | |
</div> | |
<button class="text-accent hover:text-white"> | |
<i class="fas fa-play"></i> | |
</button> | |
</div> | |
</div> | |
</div> | |
</div> | |
<div> | |
<div class="bg-black bg-opacity-30 rounded-2xl p-8 border border-gray-800 h-full"> | |
<h3 class="text-2xl font-bold mb-6">Your Composition</h3> | |
<div class="music-visualizer mb-6" style="height: 200px;"> | |
<div class="bar"></div> | |
<div class="bar"></div> | |
<div class="bar"></div> | |
<div class="bar"></div> | |
<div class="bar"></div> | |
<div class="bar"></div> | |
<div class="bar"></div> | |
<div class="bar"></div> | |
<div class="bar"></div> | |
<div class="bar"></div> | |
<div class="bar"></div> | |
<div class="bar"></div> | |
<div class="bar"></div> | |
<div class="bar"></div> | |
<div class="bar"></div> | |
</div> | |
<div class="mb-6"> | |
<div class="flex justify-between mb-2"> | |
<span class="text-gray-300">AI-Generated Symphony #427</span> | |
<span class="text-gray-400">3:42</span> | |
</div> | |
<div class="w-full bg-gray-800 rounded-full h-1"> | |
<div class="bg-accent h-1 rounded-full" style="width: 65%"></div> | |
</div> | |
</div> | |
<div class="flex justify-center space-x-6 mb-8"> | |
<button class="text-gray-400 hover:text-white text-xl"> | |
<i class="fas fa-step-backward"></i> | |
</button> | |
<button class="w-12 h-12 rounded-full gradient-bg text-white flex items-center justify-center hover:opacity-90"> | |
<i class="fas fa-play"></i> | |
</button> | |
<button class="text-gray-400 hover:text-white text-xl"> | |
<i class="fas fa-step-forward"></i> | |
</button> | |
</div> | |
<div class="mb-6"> | |
<h4 class="text-lg font-bold mb-3">Composition Details</h4> | |
<div class="grid grid-cols-2 gap-4"> | |
<div class="bg-gray-800 bg-opacity-50 p-3 rounded-lg"> | |
<div class="text-xs text-gray-400">Key</div> | |
<div class="font-medium">D Minor</div> | |
</div> | |
<div class="bg-gray-800 bg-opacity-50 p-3 rounded-lg"> | |
<div class="text-xs text-gray-400">BPM</div> | |
<div class="font-medium">128</div> | |
</div> | |
<div class="bg-gray-800 bg-opacity-50 p-3 rounded-lg"> | |
<div class="text-xs text-gray-400">Instruments</div> | |
<div class="font-medium">27</div> | |
</div> | |
<div class="bg-gray-800 bg-opacity-50 p-3 rounded-lg"> | |
<div class="text-xs text-gray-400">Layers</div> | |
<div class="font-medium">14</div> | |
</div> | |
</div> | |
</div> | |
<div class="flex space-x-3"> | |
<button class="flex-1 py-2 bg-gray-800 rounded-lg text-white hover:bg-gray-700"> | |
<i class="fas fa-download mr-1"></i> Download | |
</button> | |
<button class="flex-1 py-2 bg-gray-800 rounded-lg text-white hover:bg-gray-700"> | |
<i class="fas fa-share-alt mr-1"></i> Share | |
</button> | |
<button class="flex-1 py-2 bg-gray-800 rounded-lg text-white hover:bg-gray-700"> | |
<i class="fas fa-heart mr-1"></i> Like | |
</button> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- Hedge Fund Section --> | |
<section id="fund" class="py-20 px-4 sm:px-6 lg:px-8 max-w-7xl mx-auto"> | |
<div class="text-center mb-16"> | |
<h2 class="text-4xl md:text-5xl font-bold font-syne mb-6"> | |
<span class="gradient-text">Agentic Hedge Fund</span> | |
</h2> | |
<p class="text-xl text-gray-300 max-w-3xl mx-auto"> | |
A decentralized hedge fund powered by our AI agents, generating alpha while you sleep. | |
</p> | |
</div> | |
<div class="grid grid-cols-1 md:grid-cols-3 gap-8 mb-16"> | |
<div class="bg-gray-900 rounded-2xl p-8 border border-gray-800"> | |
<div class="text-5xl font-bold gradient-text mb-4">34.7%</div> | |
<h3 class="text-xl font-bold mb-3">Annualized Return</h3> | |
<p class="text-gray-300">Net of all fees, since inception. Outperforming traditional hedge funds by 3-5x.</p> | |
</div> | |
<div class="bg-gray-900 rounded-2xl p-8 border border-gray-800"> | |
<div class="text-5xl font-bold gradient-text mb-4">$142.8M</div> | |
<h3 class="text-xl font-bold mb-3">Total Value Locked</h3> | |
<p class="text-gray-300">Across Ethereum, Arbitrum, and Optimism networks. Fully audited smart contracts.</p> | |
</div> | |
<div class="bg-gray-900 rounded-2xl p-8 border border-gray-800"> | |
<div class="text-5xl font-bold gradient-text mb-4">24/7</div> | |
<h3 class="text-xl font-bold mb-3">Active Management</h3> | |
<p class="text-gray-300">Our AI agents never sleep, constantly scanning for opportunities across global markets.</p> | |
</div> | |
</div> | |
<div class="bg-gray-900 rounded-2xl p-8 border border-gray-800 mb-16"> | |
<h3 class="text-2xl font-bold mb-6">Portfolio Allocation</h3> | |
<div class="grid grid-cols-1 lg:grid-cols-2 gap-8"> | |
<div> | |
<div class="flex justify-between mb-2"> | |
<span class="text-gray-300">Crypto Assets</span> | |
<span class="font-bold">58%</span> | |
</div> | |
<div class="w-full bg-gray-800 rounded-full h-2 mb-6"> | |
<div class="gradient-bg h-2 rounded-full" style="width: 58%"></div> | |
</div> | |
<div class="flex justify-between mb-2"> | |
<span class="text-gray-300">NFTs & Digital Art</span> | |
<span class="font-bold">12%</span> | |
</div> | |
<div class="w-full bg-gray-800 rounded-full h-2 mb-6"> | |
<div class="gradient-bg h-2 rounded-full" style="width: 12%"></div> | |
</div> | |
<div class="flex justify-between mb-2"> | |
<span class="text-gray-300">DeFi Strategies</span> | |
<span class="font-bold">18%</span> | |
</div> | |
<div class="w-full bg-gray-800 rounded-full h-2 mb-6"> | |
<div class="gradient-bg h-2 rounded-full" style="width: 18%"></div> | |
</div> | |
<div class="flex justify-between mb-2"> | |
<span class="text-gray-300">Cash & Stablecoins</span> | |
<span class="font-bold">12%</span> | |
</div> | |
<div class="w-full bg-gray-800 rounded-full h-2"> | |
<div class="gradient-bg h-2 rounded-full" style="width: 12%"></div> | |
</div> | |
</div> | |
<div> | |
<div class="h-full flex items-center justify-center"> | |
<div class="relative w-64 h-64"> | |
<div class="absolute inset-0 rounded-full border-8 border-gray-800"></div> | |
<div class="absolute inset-0 rounded-full border-8 border-purple-600" style="clip-path: polygon(0 0, 50% 0, 50% 50%, 0 50%)"></div> | |
<div class="absolute inset-0 rounded-full border-8 border-blue-500" style="clip-path: polygon(50% 0, 100% 0, 100% 50%, 50% 50%)"></div> | |
<div class="absolute inset-0 rounded-full border-8 border-green-500" style="clip-path: polygon(0 50%, 50% 50%, 50% 100%, 0 100%)"></div> | |
<div class="absolute inset-0 rounded-full border-8 border-yellow-500" style="clip-path: polygon(50% 50%, 100% 50%, 100% 100%, 50% 100%)"></div> | |
<div class="absolute inset-0 flex items-center justify-center"> | |
<div class="text-center"> | |
<div class="text-2xl font-bold">W3A²</div> | |
<div class="text-sm text-gray-400">Fund</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
<div class="text-center"> | |
<button class="px-8 py-4 rounded-full gradient-bg text-white text-lg font-bold hover:opacity-90 transition transform hover:scale-105"> | |
Invest Now | |
</button> | |
</div> | |
</section> | |
<!-- About Section --> | |
<section id="about" class="py-20 bg-gray-900 bg-opacity-50"> | |
<div class="px-4 sm:px-6 lg:px-8 max-w-7xl mx-auto"> | |
<div class="text-center mb-16"> | |
<h2 class="text-4xl md:text-5xl font-bold font-syne mb-6"> | |
<span class="gradient-text">Our Manifesto</span> | |
</h2> | |
<p class="text-xl text-gray-300 max-w-3xl mx-auto"> | |
Where finance meets art in the age of AI and blockchain. | |
</p> | |
</div> | |
<div class="grid grid-cols-1 md:grid-cols-2 gap-12 mb-16"> | |
<div> | |
<h3 class="text-2xl font-bold mb-6">The Vision</h3> | |
<p class="text-gray-300 mb-6"> | |
Imagine Beethoven tripping on LSD at Abbey Road with Jim Morrison, while a young Steve Jobs whispers about the future in their ears. This is the spirit that animates Web3 AI Agentic Hedge Fund. | |
</p> | |
<p class="text-gray-300 mb-6"> | |
We believe the future of finance is algorithmic, autonomous, and artistic. Our AI agents don't just crunch numbers - they compose symphonies of market movements, turning volatility into verse and liquidity into lyrics. | |
</p> | |
<p class="text-gray-300"> | |
The Rick Rubin of AI agents meets Hans Zimmer and Marshmello in our music lab, while our trading agents dance to the rhythm of global markets. | |
</p> | |
</div> | |
<div> | |
<h3 class="text-2xl font-bold mb-6">The Technology</h3> | |
<p class="text-gray-300 mb-6"> | |
Our platform combines cutting-edge machine learning with blockchain transparency. Each agent specializes in a particular domain, from market microstructure analysis to generative music composition. | |
</p> | |
<p class="text-gray-300 mb-6"> | |
The MCP Agent processes market composition in real-time, the CoinGecko Explorer scans for emerging opportunities, and our Maestro Agent composes soundtracks for the digital age. | |
</p> | |
<p class="text-gray-300"> | |
All powered by decentralized infrastructure, ensuring your assets remain under your control while our agents work their magic. | |
</p> | |
</div> | |
</div> | |
<div class="bg-gray-900 rounded-2xl p-8 border border-gray-800"> | |
<h3 class="text-2xl font-bold mb-6 text-center">Join the Revolution</h3> | |
<p class="text-gray-300 text-center max-w-3xl mx-auto mb-8"> | |
Be part of the first hedge fund where your portfolio grows to the sound of AI-composed symphonies, and where financial returns harmonize with creative expression. | |
</p> | |
<div class="max-w-md mx-auto"> | |
<div class="flex"> | |
<input type="email" placeholder="Your email address" class="flex-1 px-4 py-3 rounded-l-lg bg-gray-800 text-white border border-gray-700 focus:outline-none focus:border-accent"> | |
<button class="px-6 py-3 rounded-r-lg gradient-bg text-white font-bold hover:opacity-90 transition"> | |
Subscribe | |
</button> | |
</div> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- Footer --> | |
<footer class="bg-black py-12 px-4 sm:px-6 lg:px-8 border-t border-gray-800"> | |
<div class="max-w-7xl mx-auto"> | |
<div class="grid grid-cols-1 md:grid-cols-4 gap-8 mb-8"> | |
<div> | |
<h3 class="text-xl font-bold gradient-text font-syne mb-4">W3A²</h3> | |
<p class="text-gray-400"> | |
The future of algorithmic investing and creative expression, powered by AI agents. | |
</p> | |
</div> | |
<div> | |
<h4 class="text-white font-bold mb-4">Product</h4> | |
<ul class="space-y-2"> | |
<li><a href="#" class="text-gray-400 hover:text-white transition">Hedge Fund</a></li> | |
<li><a href="#" class="text-gray-400 hover:text-white transition">Music Lab</a></li> | |
<li><a href="#" class="text-gray-400 hover:text-white transition">Agents</a></li> | |
<li><a href="#" class="text-gray-400 hover:text-white transition">W3A² Token</a></li> | |
</ul> | |
</div> | |
<div> | |
<h4 class="text-white font-bold mb-4">Resources</h4> | |
<ul class="space-y-2"> | |
<li><a href="#" class="text-gray-400 hover:text-white transition">Documentation</a></li> | |
<li><a href="#" class="text-gray-400 hover:text-white transition">Whitepaper</a></li> | |
<li><a href="#" class="text-gray-400 hover:text-white transition">Blog</a></li> | |
<li><a href="#" class="text-gray-400 hover:text-white transition">GitHub</a></li> | |
</ul> | |
</div> | |
<div> | |
<h4 class="text-white font-bold mb-4">Connect</h4> | |
<div class="flex space-x-4 mb-4"> | |
<a href="#" class="text-gray-400 hover:text-white transition"><i class="fab fa-twitter"></i></a> | |
<a href="#" class="text-gray-400 hover:text-white transition"><i class="fab fa-discord"></i></a> | |
<a href="#" class="text-gray-400 hover:text-white transition"><i class="fab fa-telegram"></i></a> | |
<a href="#" class="text-gray-400 hover:text-white transition"><i class="fab fa-medium"></i></a> | |
<a href="#" class="text-gray-400 hover:text-white transition"><i class="fab fa-github"></i></a> | |
</div> | |
<p class="text-gray-400 text-sm"> | |
[email protected] | |
</p> | |
</div> | |
</div> | |
<div class="pt-8 border-t border-gray-800 flex flex-col md:flex-row justify-between items-center"> | |
<p class="text-gray-500 text-sm mb-4 md:mb-0"> | |
© 2023 Web3 AI Agentic Hedge Fund. All rights reserved. | |
</p> | |
<div class="flex space-x-6"> | |
<a href="#" class="text-gray-500 hover:text-gray-300 text-sm">Terms</a> | |
<a href="#" class="text-gray-500 hover:text-gray-300 text-sm">Privacy</a> | |
<a href="#" class="text-gray-500 hover:text-gray-300 text-sm">Cookies</a> | |
</div> | |
</div> | |
</div> | |
</footer> | |
<script> | |
// Simple music player functionality | |
document.addEventListener('DOMContentLoaded', function() { | |
const playButtons = document.querySelectorAll('.fa-play'); | |
playButtons.forEach(button => { | |
button.addEventListener('click', function() { | |
const parentCard = this.closest('.bg-gray-800'); | |
if (parentCard) { | |
// Reset all other cards | |
document.querySelectorAll('.bg-gray-800').forEach(card => { | |
if (card !== parentCard) { | |
const icon = card.querySelector('.fa-play'); | |
if (icon) { | |
icon.classList.remove('fa-pause'); | |
icon.classList.add('fa-play'); | |
} | |
} | |
}); | |
// Toggle current card | |
if (this.classList.contains('fa-play')) { | |
this.classList.remove('fa-play'); | |
this.classList.add('fa-pause'); | |
} else { | |
this.classList.remove('fa-pause'); | |
this.classList.add('fa-play'); | |
} | |
} | |
}); | |
}); | |
// Main player controls | |
const mainPlayButton = document.querySelector('.w-12.h-12'); | |
if (mainPlayButton) { | |
mainPlayButton.addEventListener('click', function() { | |
const icon = this.querySelector('i'); | |
if (icon.classList.contains('fa-play')) { | |
icon.classList.remove('fa-play'); | |
icon.classList.add('fa-pause'); | |
} else { | |
icon.classList.remove('fa-pause'); | |
icon.classList.add('fa-play'); | |
} | |
}); | |
} | |
// Mobile menu toggle would go here | |
}); | |
</script> | |
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=ordlibrary/web3hedgefund" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> | |
</html> |