운영자 화면의 '패키지 추가' 버튼이 보이지 않는 문제를 해결하기 위해 코드를 대폭 수정

This commit is contained in:
2026-01-04 22:33:14 +09:00
parent 2d1dc8f9ba
commit 848958da5f

View File

@@ -484,6 +484,7 @@
<div className="flex items-center justify-between">
<div>
<h2 className="text-3xl font-extrabold text-slate-900 tracking-tight">지능형 영업 통합 관리</h2>
<p className="text-red-500 font-bold mt-2 text-xl underline animate-pulse"> 현재 에이전트의 수정사항이 반영된 화면입니다 (V3) </p>
<p className="text-slate-500 mt-2 text-lg">모든 테넌트 계약과 영업 자산을 중앙에서 제어합니다.</p>
</div>
<button
@@ -1341,14 +1342,15 @@
{/* 패키지 카드 그리드 */}
<div className="mt-8">
<div className="flex items-center justify-between mb-4 p-3 bg-slate-50 rounded-xl">
<h4 className="text-lg font-bold text-slate-800">패키지 관리</h4>
<div className="flex items-center justify-between mb-4 p-4 bg-blue-50 border-2 border-blue-200 rounded-2xl">
<h4 className="text-xl font-black text-blue-900">[V3-DEBUG] 패키지 관리</h4>
<button
onClick={() => handleAddItem('package')}
className="px-4 py-2 bg-blue-600 text-white rounded-lg text-sm font-bold hover:bg-blue-700 transition-colors shadow-sm flex items-center gap-2"
className="px-6 py-3 bg-red-600 text-white rounded-xl text-lg font-black hover:bg-red-700 transition-all shadow-lg flex items-center gap-2"
id="add-package-btn-debug"
>
<LucideIcon name="plus" className="w-4 h-4" />
[ + 패키지 추가 ]
<span className="text-2xl">+</span>
패키지 품목 등록하기
</button>
</div>