SiteMente - AI-Powered Lead Generation Platform

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
This commit is contained in:
2026-03-19 17:38:12 +01:00
parent 9981d2a9d2
commit d5575b58e3
34 changed files with 3061 additions and 22 deletions
+29
View File
@@ -0,0 +1,29 @@
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>
);
}