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

50 lines
1.6 KiB
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";
import { Button } from "@/components/ui/button";
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>
<CardContent className="pt-6">
<div className="space-y-6 text-center">
<h3 className="text-lg font-semibold">PLM !</h3>
<p className="text-muted-foreground"> .</p>
<div className="flex justify-center space-x-2">
<Badge variant="secondary">Spring Boot</Badge>
<Badge variant="secondary">Next.js</Badge>
<Badge variant="secondary">Shadcn/ui</Badge>
</div>
</div>
</CardContent>
</Card>
</div>
);
}