2024-12-07 19:53:34 +00:00
|
|
|
import SiteBreadcrumb from "@/components/site-breadcrumb";
|
|
|
|
|
import { Button } from "@/components/ui/button";
|
2025-01-10 12:52:04 +00:00
|
|
|
import { Plus, PlusIcon } from "lucide-react";
|
|
|
|
|
import { Link } from "@/i18n/routing";
|
|
|
|
|
import CollaborationSpvTable from "../collaboration/components/collabroation-table";
|
2024-12-07 19:53:34 +00:00
|
|
|
|
2024-12-10 18:04:03 +00:00
|
|
|
const FaqPage = async () => {
|
2024-12-07 19:53:34 +00:00
|
|
|
return (
|
|
|
|
|
<div>
|
|
|
|
|
<SiteBreadcrumb />
|
2025-01-10 12:52:04 +00:00
|
|
|
<div className="w-full overflow-x-auto bg-white p-4 rounded-sm space-y-3">
|
|
|
|
|
<div className="flex justify-between py-3">
|
|
|
|
|
<p className="text-lg">Kolaborasi</p>
|
|
|
|
|
|
|
|
|
|
<Link href="/supervisor/communications/collaboration/create">
|
|
|
|
|
<Button color="primary" size="md">
|
|
|
|
|
<PlusIcon />
|
|
|
|
|
Kolaborasi baru
|
|
|
|
|
</Button>
|
|
|
|
|
</Link>
|
|
|
|
|
</div>
|
|
|
|
|
<CollaborationSpvTable />
|
2024-12-07 19:53:34 +00:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
};
|
|
|
|
|
|
2024-12-10 18:04:03 +00:00
|
|
|
export default FaqPage;
|