24 lines
806 B
TypeScript
24 lines
806 B
TypeScript
"use client";
|
|
|
|
import { LayoutGrid } from "lucide-react";
|
|
|
|
export function EmptyDashboard() {
|
|
return (
|
|
<div className="flex h-full items-center justify-center bg-white">
|
|
<div className="flex flex-col items-center gap-4 text-center">
|
|
<div className="flex h-20 w-20 items-center justify-center rounded-full bg-muted">
|
|
<LayoutGrid className="h-10 w-10 text-muted-foreground" />
|
|
</div>
|
|
<div className="space-y-2">
|
|
<h2 className="text-xl font-semibold text-foreground">
|
|
열린 탭이 없습니다
|
|
</h2>
|
|
<p className="max-w-sm text-sm text-muted-foreground">
|
|
왼쪽 사이드바에서 메뉴를 클릭하거나 드래그하여 탭을 추가하세요.
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|