// File: app/(dashboard)/dashboard/page.tsx
import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card";
import { RecentActivity } from "@/components/dashboard/recent-activity";
export default function DashboardPage() {
return (
{/* Header Section */}
Dashboard
{/* KPI Cards Section */}
เอกสารรออนุมัติ
12
+2 จากเมื่อวาน
RFAs ที่กำลังดำเนินการ
24
อยู่ในขั้นตอนตรวจสอบ
{/* Add more KPI cards as needed */}
{/* Main Content Section (My Tasks + Recent Activity) */}
{/* Content Area หลัก (My Tasks) กินพื้นที่ 2 ส่วน */}
งานของฉัน (My Tasks)
Table Placeholder (My Tasks)
{/* Recent Activity กินพื้นที่ 1 ส่วนด้านขวา */}
);
}