ERP-node/frontend/app/(main)/page.tsx

21 lines
916 B
TypeScript
Raw Normal View History

2025-08-21 09:41:46 +09:00
export default function MainHomePage() {
2025-08-26 17:20:45 +09:00
return (
2025-11-24 12:02:23 +09:00
<div className="space-y-6 p-4">
2025-08-26 17:20:45 +09:00
{/* 대시보드 컨텐츠 */}
<div className="rounded-lg border bg-background p-6 shadow-sm">
<h3 className="mb-4 text-lg font-semibold">WACE !</h3>
<p className="mb-6 text-muted-foreground"> .</p>
2025-08-21 09:41:46 +09:00
2025-08-26 17:20:45 +09:00
<div className="flex gap-2">
<span className="inline-flex items-center rounded-md bg-success/10 px-2 py-1 text-xs font-medium text-success ring-1 ring-success/10 ring-inset">
2025-08-26 17:20:45 +09:00
Next.js
</span>
<span className="inline-flex items-center rounded-md bg-primary/10 px-2 py-1 text-xs font-medium text-primary ring-1 ring-primary/10 ring-inset">
2025-08-26 17:20:45 +09:00
Shadcn/ui
</span>
</div>
2025-08-21 09:41:46 +09:00
</div>
</div>
);
}