File size: 1,171 Bytes
2846f3c 19a2aac 2846f3c 60895f3 2846f3c f315597 2846f3c 60895f3 2846f3c 60895f3 2846f3c 19a2aac 60895f3 2846f3c 60895f3 2846f3c |
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 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>People Home AI</title>
<link rel="stylesheet" href="style.css" />
</head>
<body class="app-body">
<header class="app-header">
<div class="logo">π€ AI Legal Assistant</div>
<button class="logout-btn" onclick="logout()">Logout</button>
</header>
<section class="hero">
<h1>Speak. Think. Discover.</h1>
<p>
Your AI voice assistant is ready to help you explore ideas,
get answers, and have meaningful conversations.
</p>
<div class="feature-grid">
<div class="feature-card">π Natural Voice</div>
<div class="feature-card">β‘ Instant AI</div>
<div class="feature-card">π§ Smart Conversations</div>
<div class="feature-card">π Always Available</div>
</div>
</section>
<button class="voice-button" onclick="openVoiceAgent()">π€</button>
<script src="script.js"></script>
<script>
function openVoiceAgent() {
window.open(
"https://app.openhome.xyz/api/personalities/demo?token=AI-vMsEx",
"AI Voice",
"width=420,height=620"
);
}
</script>
</body>
</html>
|