Spaces:
Running
on
Zero
Running
on
Zero
<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, #00216e, #0077ff); | |
color: white; | |
text-align: center; | |
background-attachment: fixed; | |
background-size: cover; | |
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: #1641a5; | |
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> |