Spaces:
Sleeping
Sleeping
File size: 1,675 Bytes
a38b4f9 |
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 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<meta name="description" content="OSN Media Generator - Built by O.S.Narayana. Create media content using AI with no ads or in-app purchases."/>
<title>OSN Media Generator</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f3f4f6;
color: #111827;
text-align: center;
padding: 50px 20px;
}
.container {
max-width: 600px;
margin: auto;
background: #ffffff;
padding: 30px;
border-radius: 12px;
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
h1 {
color: #1f2937;
}
a {
color: #2563eb;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
.footer {
margin-top: 40px;
font-size: 0.9em;
color: #6b7280;
}
</style>
</head>
<body>
<div class="container">
<h1>๐ฎ OSN Media Generator</h1>
<p>
Welcome to the official homepage of <strong>OSN Media Generator</strong>, created by <strong>O.S.Narayana</strong>.
</p>
<p>
This app helps you generate audio, images, and videos using AI tools like ElevenLabs, Unsplash, and Streamlit.
</p>
<p>
๐ Try the app now: <br>
<a href="https://osnarayana-media-generator.streamlit.app/" target="_blank">Launch OSN Media Generator</a>
</p>
<p>
๐ View our <a href="privacy.html" target="_blank">Privacy Policy</a>
</p>
<div class="footer">
© 2025 OSN Media. Built with ๐ by O.S.Narayana.
</div>
</div>
</body>
</html>
|