11 lines
274 B
TypeScript
11 lines
274 B
TypeScript
import { ChatInterface } from '@/components/copilot/ChatInterface';
|
|
|
|
export default function CopilotPage() {
|
|
return (
|
|
<div className="container mx-auto px-4 py-6">
|
|
<h1 className="text-2xl font-bold mb-4">KI-Copilot</h1>
|
|
<ChatInterface />
|
|
</div>
|
|
);
|
|
}
|