2024-12-02 13:19:30 +00:00
|
|
|
"use client";
|
2024-04-24 10:10:26 +00:00
|
|
|
import { AddIcon } from "@/components/icons";
|
|
|
|
|
import MasterUserTable from "@/components/table/master-user-table";
|
|
|
|
|
import { Button, Card } from "@nextui-org/react";
|
|
|
|
|
import Link from "next/link";
|
|
|
|
|
|
|
|
|
|
export default function MasterUserPage() {
|
2024-12-02 13:19:30 +00:00
|
|
|
return (
|
2025-01-22 14:22:22 +00:00
|
|
|
<div className="overflow-x-hidden overflow-y-scroll">
|
|
|
|
|
<div className="px-2 md:px-4 md:py-4 w-full">
|
|
|
|
|
<div className="bg-white shadow-lg dark:bg-[#18181b] rounded-xl py-3">
|
|
|
|
|
<Link href="/admin/master-user/create" className="mx-3">
|
2024-12-22 17:45:31 +00:00
|
|
|
<Button
|
|
|
|
|
size="md"
|
|
|
|
|
color="primary"
|
|
|
|
|
className="bg-[#F07C00] text-white"
|
|
|
|
|
>
|
2025-01-22 14:22:22 +00:00
|
|
|
Pengguna Baru
|
2024-12-02 13:19:30 +00:00
|
|
|
<AddIcon />
|
|
|
|
|
</Button>
|
|
|
|
|
</Link>
|
|
|
|
|
<MasterUserTable />
|
2025-01-22 14:22:22 +00:00
|
|
|
</div>
|
2024-12-02 13:19:30 +00:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
);
|
2024-04-24 10:10:26 +00:00
|
|
|
}
|