Spaces:
Running
Running
File size: 1,940 Bytes
fa56145 ad3feff fa56145 ad3feff fa56145 ad3feff 17a2e18 fa56145 ad3feff fa56145 ad3feff fa56145 ad3feff fa56145 ad3feff fa56145 ad3feff fa56145 ad3feff fa56145 ad3feff fa56145 ad3feff fa56145 ad3feff fa56145 ad3feff 17a2e18 fa56145 ad3feff |
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 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Generative Audio API</title>
<style>
body {
font-family: 'Poppins', sans-serif;
background: linear-gradient(135deg, #052763, #167ed8);
color: white;
text-align: center;
padding: 50px;
}
h1 {
font-size: 2.5em;
margin-bottom: 10px;
}
p {
font-size: 1.2em;
opacity: 0.9;
}
a {
color: #AEE4FF;
text-decoration: none;
font-weight: bold;
}
.container {
background: rgba(255, 255, 255, 0.1);
padding: 25px;
border-radius: 12px;
display: inline-block;
margin-top: 20px;
box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}
.button {
background: #42A5F5;
color: white;
padding: 12px 24px;
margin-top: 20px;
display: inline-block;
border-radius: 6px;
font-size: 1.2em;
font-weight: bold;
transition: 0.3s;
}
.button:hover {
background: #1E88E5;
}
</style>
</head>
<body>
<h1>π§ͺ Creators Audio Lab π©π»βπ¬</h1>
<p>Fuel your creativity with unique sounds and experimental audio</p>
<div class="container">
<p>π <a href="/docs">/docs</a> - Interactive documentation</p>
<p>π΅ <a href="/generate-music">/generate-music</a> - Generate music based on a prompt</p>
<p>π <a href="/generate-sound">/generate-sound</a> - Create sounds from a description</p>
<a class="button" href="https://creators-lab-dusky.vercel.app/" target="_blank">π Try it on our website</a>
</div>
</body>
</html> |