From 11edbb2d185b160e89e491169d5d6cc39cd7e16c Mon Sep 17 00:00:00 2001 From: hyeonsu Date: Tue, 26 Aug 2025 18:02:37 +0900 Subject: [PATCH] =?UTF-8?q?=EB=A1=9C=EB=94=A9=20=EC=8A=A4=ED=94=BC?= =?UTF-8?q?=EB=84=88=20=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/app/(main)/main/page.tsx | 19 ------------------- frontend/components/auth/AuthGuard.tsx | 1 - 2 files changed, 20 deletions(-) diff --git a/frontend/app/(main)/main/page.tsx b/frontend/app/(main)/main/page.tsx index 8e5a1969..7cecbefb 100644 --- a/frontend/app/(main)/main/page.tsx +++ b/frontend/app/(main)/main/page.tsx @@ -2,8 +2,6 @@ import { Card, CardContent } from "@/components/ui/card"; import { Badge } from "@/components/ui/badge"; -import { Button } from "@/components/ui/button"; -import { RefreshCw } from "lucide-react"; /** * 메인 페이지 컴포넌트 @@ -12,23 +10,6 @@ import { RefreshCw } from "lucide-react"; export default function MainPage() { return (
- {/* Header */} -
-
-

대시보드

-

PLM 시스템의 주요 현황을 확인하세요

-
- -
- {/* 메인 컨텐츠 */} {/* Welcome Message */} diff --git a/frontend/components/auth/AuthGuard.tsx b/frontend/components/auth/AuthGuard.tsx index 8ad13be0..4a47de35 100644 --- a/frontend/components/auth/AuthGuard.tsx +++ b/frontend/components/auth/AuthGuard.tsx @@ -3,7 +3,6 @@ import { useEffect, ReactNode, useState } from "react"; import { useRouter } from "next/navigation"; import { useAuth } from "@/hooks/useAuth"; -import { LoadingSpinner } from "@/components/common/LoadingSpinner"; interface AuthGuardProps { children: ReactNode;