itmpwk.ac.id/resources/js/pages/dashboard.tsx
Yoga Pangestu 3905c2ce2e
Some checks failed
tests / ci (pull_request) Has been cancelled
refactor: enhance component structure and styling for improved layout and usability
2026-08-03 18:36:04 +07:00

22 lines
652 B
TypeScript

import { ChartAreaInteractive } from "@/components/chart-area-interactive";
import { DataTable } from "@/components/data-table";
import { SectionCards } from "@/components/section-cards";
import data from "./data/data.json";
export default function Page() {
return (
<div className="flex flex-1 flex-col">
<div className="@container/main flex flex-1 flex-col gap-2">
<div className="flex flex-col gap-4 py-4 md:gap-6 md:py-6">
<SectionCards />
<div className="px-4 lg:px-6">
<ChartAreaInteractive />
</div>
<DataTable data={data} />
</div>
</div>
</div>
)
}