Files
erp-nutzfahrzeuge/frontend/app/[locale]/ki-copilot/page.tsx
T

11 lines
274 B
TypeScript
Raw Normal View History

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