Files
ACVE/app/(public)/assistant/page.tsx
2026-02-07 18:08:42 -06:00

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>
);
}