mirror of
https://github.com/crocofied/CoreControl.git
synced 2025-12-29 16:14:43 +00:00
Breadcrumbs
This commit is contained in:
@@ -7,11 +7,15 @@ interface DashboardPageProps {
|
||||
name: string;
|
||||
}
|
||||
|
||||
export default function DashboardPage({ username, name }: DashboardPageProps) {
|
||||
export default function DashboardPage({ username, name }: DashboardPageProps) {
|
||||
return (
|
||||
<div>
|
||||
<Sidebar username={username} fullName={name}>
|
||||
<main>
|
||||
<Sidebar
|
||||
username={username}
|
||||
fullName={name}
|
||||
breadcrumbPath={['Home', 'Dashboard']}
|
||||
>
|
||||
<main className="pl-4">
|
||||
<h1>Dashboard</h1>
|
||||
</main>
|
||||
</Sidebar>
|
||||
|
||||
Reference in New Issue
Block a user