diff --git a/frontend/app/(main)/main/page.tsx b/frontend/app/(main)/main/page.tsx
index d042e51f..adad4d1b 100644
--- a/frontend/app/(main)/main/page.tsx
+++ b/frontend/app/(main)/main/page.tsx
@@ -5,12 +5,12 @@ import { useAuth } from "@/hooks/useAuth";
import { FileCheck, Menu, Users, Bell, FileText, Layout, Server, Shield, Calendar } from "lucide-react";
const quickAccessItems = [
- { label: "결재함", icon: FileCheck, href: "/admin/approvalBox" },
- { label: "메뉴 관리", icon: Menu, href: "/admin/menu" },
- { label: "사용자 관리", icon: Users, href: "/admin/userMng" },
- { label: "공지사항", icon: Bell, href: "/admin/system-notices" },
- { label: "감사 로그", icon: FileText, href: "/admin/audit-log" },
- { label: "화면 관리", icon: Layout, href: "/admin/screenMng" },
+ { label: "결재함", icon: FileCheck, href: "/admin/approvalBox", color: "text-blue-600 bg-blue-50" },
+ { label: "메뉴 관리", icon: Menu, href: "/admin/menu", color: "text-violet-600 bg-violet-50" },
+ { label: "사용자 관리", icon: Users, href: "/admin/userMng", color: "text-emerald-600 bg-emerald-50" },
+ { label: "공지사항", icon: Bell, href: "/admin/system-notices", color: "text-amber-600 bg-amber-50" },
+ { label: "감사 로그", icon: FileText, href: "/admin/audit-log", color: "text-rose-600 bg-rose-50" },
+ { label: "화면 관리", icon: Layout, href: "/admin/screenMng", color: "text-cyan-600 bg-cyan-50" },
];
export default function MainPage() {
@@ -18,35 +18,35 @@ export default function MainPage() {
const { user } = useAuth();
const userName = user?.userName || "사용자";
+ const today = new Date();
+ const dateStr = today.toLocaleDateString("ko-KR", { year: "numeric", month: "long", day: "numeric", weekday: "long" });
return (
-
- {/* 환영 영역 */}
-
-
- 안녕하세요, {userName}님
+
+ {/* 헤더 영역 */}
+
+
+ {userName}님, 좋은 하루 되세요
-
- 오늘도 효율적인 업무를 시작하세요.
-
+
{dateStr}
- {/* 퀵 액세스 카드 */}
+ {/* 바로가기 */}
-
바로가기
-
+
바로가기
+
{quickAccessItems.map((item) => {
const Icon = item.icon;
return (