// import { DashboardPage } from "@/components/custom/content/DashboardPage"; import { DPage } from "@/components/custom/content/DPage"; import TableCardComponentImproved from "@/components/custom/content/TableCardComponentImproved"; const pageIndexMulti: Record>> = { "/dashboard": { DashboardPage: TableCardComponentImproved }, "/build": { DashboardPage: DPage }, "/build/create": { DashboardPage: DPage }, "/build/update": { DashboardPage: DPage }, "/people": { DashboardPage: DPage }, "/people/create": { DashboardPage: DPage }, "/people/update": { DashboardPage: DPage }, "/decision/book": { DashboardPage: DPage }, "/decision/book/create": { DashboardPage: DPage }, "/decision/book/update": { DashboardPage: DPage }, "/assign/employee": { DashboardPage: DPage }, "/assign/occupant": { DashboardPage: DPage }, }; export { pageIndexMulti };