d5575b58e3
Features: - Mission Control dashboard - HP Submissions tracking - AI Agents integration - Lead management CRM - Marketing email templates - Chrome extension support Tech: Next.js, TypeScript, Tailwind CSS, MySQL
30 lines
928 B
TypeScript
30 lines
928 B
TypeScript
import VoiceWidget from "../../components/VoiceWidget";
|
|
|
|
export default function DemoPage() {
|
|
return (
|
|
<div className="min-h-screen bg-gradient-to-br from-purple-900 via-indigo-900 to-black flex items-center justify-center p-4">
|
|
<div className="w-full max-w-md">
|
|
<div className="text-center mb-8">
|
|
<h1 className="text-3xl font-bold text-white mb-2">
|
|
🏆 SiteMente AI Demo
|
|
</h1>
|
|
<p className="text-purple-200">
|
|
Meet Cleopatra - Your AI Voice Assistant
|
|
</p>
|
|
</div>
|
|
|
|
<VoiceWidget />
|
|
|
|
<div className="mt-8 text-center">
|
|
<p className="text-sm text-purple-300">
|
|
Powered by Ollama (local AI)
|
|
</p>
|
|
<p className="text-xs text-purple-400 mt-2">
|
|
Voice processing happens locally - no external APIs!
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|