forked from RiseUP/riseup-squad20
13 lines
237 B
TypeScript
13 lines
237 B
TypeScript
"use client";
|
|
|
|
import AIVoiceFlow from "@/components/ZoeIA/ai-voice-flow";
|
|
|
|
export default function VozPage() {
|
|
return (
|
|
<div className="min-h-screen flex items-center justify-center p-10">
|
|
<AIVoiceFlow />
|
|
</div>
|
|
);
|
|
}
|
|
|