AI Chat
)
}">
AI Chat
)
}">
AI Chat
)
}">
import ChatInterface from '@/components/chat-interface'
import Link from 'next/link'
import { Button } from '@/components/ui/button'
import { ArrowLeft } from 'lucide-react'
export default function ChatPage() {
return (
<div className="container mx-auto px-4 py-8">
<div className="flex justify-between items-center mb-6">
<h1 className="text-3xl font-bold">AI Chat</h1>
<Link href="/dashboard">
<Button variant="outline" className="flex items-center gap-2">
<ArrowLeft className="h-4 w-4" />
Back to Prompt Enhancer
</Button>
</Link>
</div>
<ChatInterface />
</div>
)
}