web-humas-fe/app/(admin)/admin/article/page.tsx

30 lines
886 B
TypeScript
Raw Normal View History

"use client";
2024-04-19 13:26:27 +00:00
import { AddIcon } from "@/components/icons";
import ArticleTable from "@/components/table/article-table";
import generatedArticleIds from "@/store/generated-article-store";
2025-02-13 08:25:39 +00:00
import { Button, Card } from "@heroui/react";
2024-04-19 13:26:27 +00:00
import Link from "next/link";
import { useRouter } from "next/navigation";
2024-04-19 13:26:27 +00:00
export default function BasicPage() {
return (
2025-01-17 02:57:45 +00:00
<div className="overflow-x-hidden overflow-y-scroll">
<div className="px-2 md:px-4 md:py-4 w-full">
2025-01-30 11:34:29 +00:00
<div className="bg-white shadow-lg dark:bg-[#18181b] rounded-xl p-3">
<Link href="/admin/article/create">
2025-01-30 11:34:29 +00:00
<Button
size="md"
className="bg-[#F07C00] text-white w-full lg:w-fit"
>
Tambah Artikel
2024-12-22 17:45:31 +00:00
<AddIcon />
</Button>
</Link>
<ArticleTable />
</div>
</div>
</div>
);
2024-04-19 13:26:27 +00:00
}