initial commit
This commit is contained in:
42
app/detail/kelompok-keahlian-lulus-tepat/page.tsx
Normal file
42
app/detail/kelompok-keahlian-lulus-tepat/page.tsx
Normal file
@@ -0,0 +1,42 @@
|
||||
'use client';
|
||||
|
||||
import KelompokKeahlianLulusTepatPieChart from "@/components/chartsDashboard/kkdashboardtepatpiechart";
|
||||
|
||||
export default function KelompokKeahlianLulusTepatDetailPage() {
|
||||
return (
|
||||
<div className="min-h-screen bg-gray-50 dark:bg-[var(--background)] p-4">
|
||||
<div className="container mx-auto max-w-7xl space-y-2">
|
||||
{/* Chart Section - Enhanced Size */}
|
||||
<div className="grid grid-cols-1 lg:grid-cols-1 gap-6">
|
||||
{/* Kelompok Keahlian Lulus Tepat Chart dengan ukuran lebih besar */}
|
||||
<div className="lg:col-span-2">
|
||||
<KelompokKeahlianLulusTepatPieChart
|
||||
height="h-[400px] sm:h-[400px] lg:h-[400px]"
|
||||
showDetailButton={false}
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{/* Information Section */}
|
||||
<div className="bg-white dark:bg-slate-900 rounded-lg shadow-sm p-6">
|
||||
<h2 className="text-xl font-semibold text-gray-900 dark:text-white mb-4">
|
||||
Informasi Visualisasi
|
||||
</h2>
|
||||
<div className="grid md:grid-cols-2 gap-6">
|
||||
<div>
|
||||
<h3 className="font-medium text-gray-900 dark:text-white mb-2">
|
||||
Grafik Kelompok Keahlian Lulus Tepat Waktu
|
||||
</h3>
|
||||
<ul className="text-sm text-gray-600 dark:text-gray-300 space-y-1">
|
||||
<li>• Menampilkan distribusi lulusan tepat waktu berdasarkan kelompok keahlian</li>
|
||||
<li>• Data menunjukkan jumlah mahasiswa yang lulus sesuai durasi standar per bidang studi</li>
|
||||
<li>• Grafik pie chart untuk visualisasi proporsi keberhasilan per kelompok keahlian</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user