dev #46

Merged
kjs merged 344 commits from dev into main 2025-09-22 18:17:24 +09:00
2 changed files with 0 additions and 20 deletions
Showing only changes of commit 11edbb2d18 - Show all commits

View File

@ -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 (
<div className="space-y-6">
{/* Header */}
<div className="flex items-center justify-between">
<div>
<h1 className="text-3xl font-bold"></h1>
<p className="text-muted-foreground">PLM </p>
</div>
<Button
variant="outline"
onClick={() => {
console.log("refresh");
}}
>
<RefreshCw className="mr-2 h-4 w-4" />
</Button>
</div>
{/* 메인 컨텐츠 */}
{/* Welcome Message */}
<Card>

View File

@ -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;