Logbook
This commit is contained in:
17
apps/hub/app/(app)/logbook/page.tsx
Normal file
17
apps/hub/app/(app)/logbook/page.tsx
Normal file
@@ -0,0 +1,17 @@
|
||||
import { NotebookText } from "lucide-react";
|
||||
import LogbookTable from "./_components/LogbookTable";
|
||||
|
||||
export default () => {
|
||||
return (
|
||||
<div className="grid grid-cols-6 gap-4">
|
||||
<div className="col-span-full">
|
||||
<p className="text-2xl font-semibold text-left flex items-center gap-2">
|
||||
<NotebookText className="w-5 h-5" /> Logbook
|
||||
</p>
|
||||
</div>
|
||||
<div className="card bg-base-200 shadow-xl mb-4 col-span-6">
|
||||
<LogbookTable />
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
Reference in New Issue
Block a user