First commit

This commit is contained in:
mdares
2026-02-07 18:08:42 -06:00
commit b7a86a2d1c
57 changed files with 9188 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
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>
);
}