tes lagi
This commit is contained in:
@@ -1,11 +1,22 @@
|
||||
'use client';
|
||||
|
||||
import { useState } from "react";
|
||||
import KelompokKeahlianLulusTepatPieChart from "@/components/chartsDashboard/kkdashboardtepatpiechart";
|
||||
import FilterTahunAngkatan from "@/components/FilterTahunAngkatan";
|
||||
import TabelKKLulusTepatMahasiswa from "@/components/chartstable/tabelkklulustepatmahasiswa";
|
||||
|
||||
export default function KelompokKeahlianLulusTepatDetailPage() {
|
||||
const [selectedYear, setSelectedYear] = useState<string>("all");
|
||||
|
||||
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">
|
||||
{/* Filter Section */}
|
||||
<FilterTahunAngkatan
|
||||
selectedYear={selectedYear}
|
||||
onYearChange={setSelectedYear}
|
||||
/>
|
||||
|
||||
{/* 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 */}
|
||||
@@ -17,6 +28,9 @@ export default function KelompokKeahlianLulusTepatDetailPage() {
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{/* Tabel Section */}
|
||||
<TabelKKLulusTepatMahasiswa selectedYear={selectedYear} />
|
||||
|
||||
{/* 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">
|
||||
|
||||
Reference in New Issue
Block a user