refactor: Remove deprecated agent dashboard and message components, add FAQ page, and introduce a new generic messaging system.

This commit is contained in:
pradeepkumar
2026-01-20 12:26:27 +05:30
parent a4dc8bb0fa
commit f035129b6a
28 changed files with 693 additions and 1192 deletions

View File

@@ -0,0 +1,11 @@
'use client';
import { MessagingPage } from '@/components/message';
export default function UserMessagePage() {
return (
<div className="max-w-7xl mx-auto px-4 lg:px-8 py-6">
<MessagingPage />
</div>
);
}

View File

@@ -129,6 +129,7 @@ export default function AgentProfileView() {
bio={agentData.bio}
expertise={agentData.expertise}
showEditButton={false}
messageHref="/user/message"
/>
{/* Experience Section */}