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

21 lines
916 B
TypeScript

export default function MainHomePage() {
return (
<div className="space-y-6 p-4">
{/* 대시보드 컨텐츠 */}
<div className="bg-background rounded-lg border p-6 shadow-sm">
<h3 className="mb-4 text-lg font-semibold">WACE !</h3>
<p className="text-muted-foreground mb-6"> .</p>
<div className="flex gap-2">
<span className="bg-success/10 text-success ring-success/10 inline-flex items-center rounded-md px-2 py-1 text-xs font-medium ring-1 ring-inset">
Next.js
</span>
<span className="bg-primary/10 text-primary ring-primary/10 inline-flex items-center rounded-md px-2 py-1 text-xs font-medium ring-1 ring-inset">
Shadcn/ui
</span>
</div>
</div>
</div>
);
}