코드 정리 및 UI 개선: 불필요한 파일 제거, 디버그 로그 정리, 프로덕션 설정 개선, 할일관리 헤더 개선

This commit is contained in:
Hyungi Ahn
2025-09-04 11:21:15 +09:00
parent 16eec06b7c
commit f49edaf06b
6 changed files with 25 additions and 3763 deletions

View File

@@ -226,12 +226,28 @@
<!-- 메인 컨텐츠 -->
<main class="container mx-auto px-4 pt-20 pb-8">
<!-- 페이지 헤더 -->
<div class="text-center mb-6">
<h1 class="text-2xl md:text-4xl font-bold text-gray-900 mb-2">
<i class="fas fa-tasks text-indigo-600 mr-2"></i>
<div class="text-center mb-8">
<h1 class="text-3xl md:text-4xl font-bold text-gray-900 mb-3">
<i class="fas fa-tasks text-indigo-600 mr-3"></i>
할일관리
</h1>
<p class="text-sm md:text-xl text-gray-600">간편한 할일 관리</p>
<p class="text-lg md:text-xl text-gray-600 mb-4">효율적인 일정 관리와 생산성 향상</p>
<!-- 간단한 통계 -->
<div class="flex justify-center space-x-6 text-sm text-gray-500">
<div class="flex items-center">
<i class="fas fa-inbox w-4 h-4 mr-1 text-gray-400"></i>
<span>검토필요 <strong x-text="stats.draft_count || 0"></strong></span>
</div>
<div class="flex items-center">
<i class="fas fa-tasks w-4 h-4 mr-1 text-blue-500"></i>
<span>진행중 <strong x-text="stats.todo_count || 0"></strong></span>
</div>
<div class="flex items-center">
<i class="fas fa-check w-4 h-4 mr-1 text-green-500"></i>
<span>완료 <strong x-text="stats.completed_count || 0"></strong></span>
</div>
</div>
</div>
<!-- 할일 입력 (memos/트위터 스타일) -->