feat: Increase agent dashboard sidebar width and profile image dimensions.

This commit is contained in:
pradeepkumar
2026-01-18 19:00:43 +05:30
parent 8df27a285b
commit fc3e8a783c

View File

@@ -205,15 +205,15 @@ export default function AgentDashboard() {
{/* Desktop: Original Layout - Sidebar + Right Content (Profile + Experience) */}
<div className="hidden lg:flex flex-row gap-6 items-stretch">
{/* Left Sidebar - Status & Contact */}
<div className="w-[220px] flex-shrink-0 space-y-4">
<div className="w-[280px] flex-shrink-0 space-y-4">
{/* Profile Image */}
<div className="relative w-[200px]">
<div className="w-[200px] h-[200px] rounded-[15px] overflow-hidden">
<div className="relative w-[260px]">
<div className="w-[260px] h-[260px] rounded-[15px] overflow-hidden">
<Image
src={agentData.profileImage}
alt="Profile"
width={200}
height={200}
width={260}
height={260}
className="w-full h-full object-cover"
/>
{/* Gradient Overlay */}