enter login & navigate all menu

This commit is contained in:
Raja Oktafrianto
2025-03-19 13:04:16 +07:00
parent cc5332eee8
commit 5e8109ccea
18 changed files with 261 additions and 93 deletions

View File

@ -1,11 +1,28 @@
import { Container, DataGridInner } from '@/components';
import { ManageNotifContextProvider } from './hooks/ManageNotificationContext';
import AddDialog from './blocks/AddDialog';
import { Breadcrumbs, Link } from '@mui/material';
const ManageNotification = () => {
return (
<ManageNotifContextProvider>
<Container>
<h1 className="text-xl font-medium leading-none text-gray-900 mb-3">
Manage Notifications
</h1>
<Breadcrumbs sx={{ mb: 2 }}>
<Link underline="none" color="inherit" href="/">
<span className="text-sm hover:underline">Dashboard</span>
</Link>
<Link underline="none" color="inherit">
<span className="text-sm">Notification</span>
</Link>
<Link underline="none" color="inherit">
<span className="text-sm">Manage Notification</span>
</Link>
</Breadcrumbs>
<div className="grid gap-5 lg:gap-7.5">
<DataGridInner />
</div>

View File

@ -108,9 +108,6 @@ const ManageNotifContextProvider = ({ children }: { children: React.ReactNode })
return (
<div>
<div className="container mx-auto py-5">
<h1>Manage Notifications</h1>
</div>
<ManageNotifContext.Provider
value={{
handleAddDialog,