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

31 lines
1011 B
TypeScript
Raw Normal View History

2025-08-21 09:41:46 +09:00
"use client";
import { Card, CardContent } from "@/components/ui/card";
import { Badge } from "@/components/ui/badge";
/**
*
*
*/
export default function MainPage() {
return (
2025-10-21 10:44:09 +09:00
<div className="space-y-6 px-4 pt-10">
2025-08-21 09:41:46 +09:00
{/* 메인 컨텐츠 */}
{/* Welcome Message */}
<Card>
<CardContent className="pt-6">
<div className="space-y-6 text-center">
2025-11-05 15:52:17 +09:00
<h3 className="text-lg font-semibold">Vexplor에 !</h3>
2025-08-21 09:41:46 +09:00
<p className="text-muted-foreground"> .</p>
<div className="flex justify-center space-x-2">
2025-10-21 10:44:09 +09:00
<Badge variant="secondary">Node.js</Badge>
2025-08-21 09:41:46 +09:00
<Badge variant="secondary">Next.js</Badge>
<Badge variant="secondary">Shadcn/ui</Badge>
</div>
</div>
</CardContent>
</Card>
</div>
);
}