import { Link } from "react-router-dom"; import { useAuthStore } from "@/stores/authStore"; const shortcuts = [ { to: "/dashboard", icon: "dashboard", label: "대시보드", desc: "발송 현황 한눈에 보기", color: "blue" as const, }, { to: "/services", icon: "manage_accounts", label: "서비스 관리", desc: "서비스 목록 및 설정", color: "blue" as const, }, { to: "/services/register", icon: "add_circle", label: "서비스 등록", desc: "새 서비스 등록하기", color: "green" as const, }, { to: "/statistics/history", icon: "send", label: "발송 내역", desc: "최근 메시지 발송 기록", color: "blue" as const, }, ] as const; export default function HomePage() { const userName = useAuthStore((s) => s.user?.name) ?? "관리자"; return (
SPMS Admin Console에 오신 것을 환영합니다.
아래 바로가기를 통해 원하는 메뉴로 이동하세요.
{item.label}
{item.desc}
Stein Push Messaging Service v1.0