mirror of
https://github.com/Purple-Horizons/openclaw-voice.git
synced 2026-08-14 09:02:28 +00:00
- Added comprehensive meta tags (title, description, keywords) - Added Open Graph tags for Facebook/LinkedIn - Added Twitter Card meta tags - Added JSON-LD structured data (SoftwareApplication schema) - Added canonical URL - Expanded feature descriptions for better keyword coverage - Added use cases section - Added Miami location for local SEO - Updated repo description and topics on GitHub
363 lines
13 KiB
HTML
363 lines
13 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<!-- Primary Meta Tags -->
|
|
<title>OpenClaw Voice — Free Open-Source Voice Chat for AI Assistants</title>
|
|
<meta name="title" content="OpenClaw Voice — Free Open-Source Voice Chat for AI Assistants">
|
|
<meta name="description" content="Talk to your AI assistant like Alexa. Self-hosted, private, open-source. Browser-based voice conversations with Whisper STT and ElevenLabs TTS. Works with OpenAI, Claude, and custom agents.">
|
|
<meta name="keywords" content="voice AI, speech to text, text to speech, AI assistant, voice chat, Whisper, ElevenLabs, OpenAI, Claude, self-hosted, open source, voice interface, conversational AI, voice bot, AI voice, browser voice chat">
|
|
<meta name="author" content="Purple Horizons">
|
|
<meta name="robots" content="index, follow">
|
|
<link rel="canonical" href="https://openclawvoice.com/">
|
|
|
|
<!-- Open Graph / Facebook -->
|
|
<meta property="og:type" content="website">
|
|
<meta property="og:url" content="https://openclawvoice.com/">
|
|
<meta property="og:title" content="OpenClaw Voice — Free Open-Source Voice Chat for AI">
|
|
<meta property="og:description" content="Talk to your AI like Alexa. Self-hosted, private, open-source. Browser-based voice with Whisper STT and ElevenLabs TTS.">
|
|
<meta property="og:image" content="https://openclawvoice.com/og-image.png">
|
|
<meta property="og:image:width" content="1200">
|
|
<meta property="og:image:height" content="630">
|
|
<meta property="og:site_name" content="OpenClaw Voice">
|
|
<meta property="og:locale" content="en_US">
|
|
|
|
<!-- Twitter -->
|
|
<meta name="twitter:card" content="summary_large_image">
|
|
<meta name="twitter:url" content="https://openclawvoice.com/">
|
|
<meta name="twitter:title" content="OpenClaw Voice — Free Open-Source Voice Chat for AI">
|
|
<meta name="twitter:description" content="Talk to your AI like Alexa. Self-hosted, private, open-source. Browser-based voice with Whisper STT and ElevenLabs TTS.">
|
|
<meta name="twitter:image" content="https://openclawvoice.com/og-image.png">
|
|
<meta name="twitter:creator" content="@GianniDalerta">
|
|
|
|
<!-- Favicon -->
|
|
<link rel="icon" type="image/svg+xml" href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><text y='.9em' font-size='90'>🦞</text></svg>">
|
|
<link rel="apple-touch-icon" href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><text y='.9em' font-size='90'>🦞</text></svg>">
|
|
|
|
<!-- Structured Data -->
|
|
<script type="application/ld+json">
|
|
{
|
|
"@context": "https://schema.org",
|
|
"@type": "SoftwareApplication",
|
|
"name": "OpenClaw Voice",
|
|
"applicationCategory": "DeveloperApplication",
|
|
"operatingSystem": "Cross-platform",
|
|
"description": "Open-source browser-based voice interface for AI assistants. Self-hosted voice chat with Whisper STT and ElevenLabs TTS.",
|
|
"url": "https://openclawvoice.com",
|
|
"downloadUrl": "https://github.com/Purple-Horizons/openclaw-voice",
|
|
"softwareVersion": "1.0.0",
|
|
"author": {
|
|
"@type": "Organization",
|
|
"name": "Purple Horizons",
|
|
"url": "https://purplehorizons.io"
|
|
},
|
|
"offers": {
|
|
"@type": "Offer",
|
|
"price": "0",
|
|
"priceCurrency": "USD"
|
|
},
|
|
"featureList": [
|
|
"Browser-based voice chat",
|
|
"Local Whisper speech-to-text",
|
|
"ElevenLabs text-to-speech",
|
|
"OpenAI and Claude integration",
|
|
"Self-hosted and private",
|
|
"WebSocket streaming",
|
|
"Continuous conversation mode",
|
|
"Voice Activity Detection"
|
|
],
|
|
"screenshot": "https://openclawvoice.com/og-image.png",
|
|
"license": "https://opensource.org/licenses/MIT"
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
* { margin: 0; padding: 0; box-sizing: border-box; }
|
|
|
|
body {
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
|
|
background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
|
|
color: #fff;
|
|
min-height: 100vh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 2rem;
|
|
}
|
|
|
|
.container {
|
|
max-width: 900px;
|
|
text-align: center;
|
|
}
|
|
|
|
.logo {
|
|
font-size: 5rem;
|
|
margin-bottom: 1rem;
|
|
animation: float 3s ease-in-out infinite;
|
|
}
|
|
|
|
@keyframes float {
|
|
0%, 100% { transform: translateY(0); }
|
|
50% { transform: translateY(-10px); }
|
|
}
|
|
|
|
h1 {
|
|
font-size: 2.8rem;
|
|
margin-bottom: 0.5rem;
|
|
background: linear-gradient(90deg, #e94560, #ff6b6b);
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
background-clip: text;
|
|
}
|
|
|
|
.tagline {
|
|
font-size: 1.3rem;
|
|
color: #a0a0a0;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.sub-tagline {
|
|
font-size: 1rem;
|
|
color: #707070;
|
|
margin-bottom: 2rem;
|
|
}
|
|
|
|
.features {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
|
|
gap: 1.5rem;
|
|
margin: 3rem 0;
|
|
text-align: left;
|
|
}
|
|
|
|
.feature {
|
|
background: rgba(255, 255, 255, 0.05);
|
|
border-radius: 12px;
|
|
padding: 1.5rem;
|
|
border: 1px solid rgba(255, 255, 255, 0.1);
|
|
}
|
|
|
|
.feature h3 {
|
|
color: #e94560;
|
|
margin-bottom: 0.5rem;
|
|
font-size: 1.1rem;
|
|
}
|
|
|
|
.feature p {
|
|
color: #a0a0a0;
|
|
font-size: 0.95rem;
|
|
line-height: 1.5;
|
|
}
|
|
|
|
.cta-buttons {
|
|
display: flex;
|
|
gap: 1rem;
|
|
justify-content: center;
|
|
flex-wrap: wrap;
|
|
margin-top: 2rem;
|
|
}
|
|
|
|
.btn {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
padding: 1rem 2rem;
|
|
border-radius: 8px;
|
|
font-size: 1.1rem;
|
|
font-weight: 600;
|
|
text-decoration: none;
|
|
transition: transform 0.2s, box-shadow 0.2s;
|
|
}
|
|
|
|
.btn:hover {
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
|
|
}
|
|
|
|
.btn-primary {
|
|
background: linear-gradient(90deg, #e94560, #ff6b6b);
|
|
color: white;
|
|
}
|
|
|
|
.btn-secondary {
|
|
background: rgba(255, 255, 255, 0.1);
|
|
color: white;
|
|
border: 1px solid rgba(255, 255, 255, 0.2);
|
|
}
|
|
|
|
.stack {
|
|
margin-top: 3rem;
|
|
padding-top: 2rem;
|
|
border-top: 1px solid rgba(255, 255, 255, 0.1);
|
|
}
|
|
|
|
.stack h3 {
|
|
color: #a0a0a0;
|
|
font-size: 0.9rem;
|
|
text-transform: uppercase;
|
|
letter-spacing: 2px;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.stack-items {
|
|
display: flex;
|
|
gap: 2rem;
|
|
justify-content: center;
|
|
flex-wrap: wrap;
|
|
color: #666;
|
|
font-size: 0.95rem;
|
|
}
|
|
|
|
.stack-item {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
}
|
|
|
|
.use-cases {
|
|
margin-top: 3rem;
|
|
text-align: left;
|
|
}
|
|
|
|
.use-cases h2 {
|
|
text-align: center;
|
|
color: #fff;
|
|
margin-bottom: 1.5rem;
|
|
font-size: 1.5rem;
|
|
}
|
|
|
|
.use-case-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
|
|
gap: 1rem;
|
|
}
|
|
|
|
.use-case {
|
|
background: rgba(255, 255, 255, 0.03);
|
|
padding: 1rem 1.5rem;
|
|
border-radius: 8px;
|
|
border-left: 3px solid #e94560;
|
|
}
|
|
|
|
.use-case strong {
|
|
color: #fff;
|
|
}
|
|
|
|
.use-case span {
|
|
color: #888;
|
|
font-size: 0.9rem;
|
|
}
|
|
|
|
footer {
|
|
margin-top: 4rem;
|
|
color: #666;
|
|
font-size: 0.9rem;
|
|
}
|
|
|
|
footer a {
|
|
color: #e94560;
|
|
text-decoration: none;
|
|
}
|
|
|
|
footer a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
@media (max-width: 600px) {
|
|
h1 { font-size: 2rem; }
|
|
.tagline { font-size: 1.1rem; }
|
|
.logo { font-size: 4rem; }
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<div class="logo">🦞</div>
|
|
<h1>OpenClaw Voice</h1>
|
|
<p class="tagline">Talk to your AI like you talk to Alexa</p>
|
|
<p class="sub-tagline">Self-hosted • Private • Open Source • Free</p>
|
|
|
|
<div class="features">
|
|
<div class="feature">
|
|
<h3>🎤 Local Speech-to-Text</h3>
|
|
<p>Whisper runs locally via faster-whisper. Your voice never leaves your machine. Fast and private.</p>
|
|
</div>
|
|
<div class="feature">
|
|
<h3>🔊 Premium Text-to-Speech</h3>
|
|
<p>ElevenLabs integration for natural, expressive voices. Or use local Chatterbox for fully self-hosted.</p>
|
|
</div>
|
|
<div class="feature">
|
|
<h3>⚡ Low Latency Streaming</h3>
|
|
<p>WebSocket-based audio streaming for real-time conversations. Sub-second response times.</p>
|
|
</div>
|
|
<div class="feature">
|
|
<h3>🌐 Works in Any Browser</h3>
|
|
<p>No app to install. Works on desktop and mobile. Just open the URL and start talking.</p>
|
|
</div>
|
|
<div class="feature">
|
|
<h3>🔌 Connect Any AI</h3>
|
|
<p>Works with OpenAI, Claude, or your own agent. Full OpenClaw gateway integration available.</p>
|
|
</div>
|
|
<div class="feature">
|
|
<h3>🏠 100% Self-Hosted</h3>
|
|
<p>Run on your own hardware. Your data stays on your servers. No subscriptions, no vendor lock-in.</p>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="cta-buttons">
|
|
<a href="https://github.com/Purple-Horizons/openclaw-voice" class="btn btn-primary">
|
|
⭐ View on GitHub
|
|
</a>
|
|
<a href="https://openclaw.ai" class="btn btn-secondary">
|
|
🦞 OpenClaw
|
|
</a>
|
|
</div>
|
|
|
|
<div class="use-cases">
|
|
<h2>Built For</h2>
|
|
<div class="use-case-grid">
|
|
<div class="use-case">
|
|
<strong>Developers</strong><br>
|
|
<span>Add voice to your AI apps in minutes</span>
|
|
</div>
|
|
<div class="use-case">
|
|
<strong>Power Users</strong><br>
|
|
<span>Hands-free AI while driving or cooking</span>
|
|
</div>
|
|
<div class="use-case">
|
|
<strong>Privacy-Focused</strong><br>
|
|
<span>Keep conversations off the cloud</span>
|
|
</div>
|
|
<div class="use-case">
|
|
<strong>Makers</strong><br>
|
|
<span>Build voice assistants for IoT & kiosks</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="stack">
|
|
<h3>Built With</h3>
|
|
<div class="stack-items">
|
|
<span class="stack-item">🐍 Python</span>
|
|
<span class="stack-item">🎙️ faster-whisper</span>
|
|
<span class="stack-item">🗣️ ElevenLabs</span>
|
|
<span class="stack-item">🔌 WebSockets</span>
|
|
<span class="stack-item">⚡ FastAPI</span>
|
|
</div>
|
|
</div>
|
|
|
|
<footer>
|
|
<p>Part of the <a href="https://openclaw.ai">OpenClaw</a> ecosystem</p>
|
|
<p>Built by <a href="https://purplehorizons.io">Purple Horizons</a> in Miami 🌴</p>
|
|
<p style="margin-top: 1rem; font-size: 0.8rem; color: #555;">
|
|
MIT License • <a href="https://github.com/Purple-Horizons/openclaw-voice">Source Code</a> •
|
|
<a href="https://github.com/Purple-Horizons/openclaw-voice/issues">Report Issues</a>
|
|
</p>
|
|
</footer>
|
|
</div>
|
|
</body>
|
|
</html>
|