US-017 completed

This commit is contained in:
Roberto Musso
2026-02-22 23:21:37 +01:00
parent 2308158976
commit 98acf6220e
5 changed files with 158 additions and 27 deletions

View File

@@ -0,0 +1,12 @@
import { Sparkles } from 'lucide-react';
export function AIChatPanel() {
return (
<div className="absolute inset-0 z-0 flex flex-col items-center justify-center bg-background">
<Sparkles size={32} className="text-muted-foreground/40 mb-3" />
<p className="text-sm text-muted-foreground/60 tracking-wide">
AI Chat coming soon
</p>
</div>
);
}