12 lines
405 B
TypeScript
12 lines
405 B
TypeScript
import AssistantDrawer from "@/components/AssistantDrawer";
|
|
|
|
export default function AssistantPage() {
|
|
return (
|
|
<div className="space-y-4">
|
|
<h1 className="acve-heading text-4xl md:text-6xl">AI Assistant (Demo)</h1>
|
|
<p className="text-lg text-slate-600 md:text-2xl">This page renders the same assistant UI as the global drawer.</p>
|
|
<AssistantDrawer mode="page" />
|
|
</div>
|
|
);
|
|
}
|