2025-02-23 10:22:51 +08:00
|
|
|
import type { PropsWithChildren } from 'react'
|
|
|
|
|
|
2025-02-23 12:18:10 +08:00
|
|
|
import { Navbar } from './navbar'
|
|
|
|
|
import { Sidebar } from './sidebar'
|
|
|
|
|
|
2025-02-23 10:22:51 +08:00
|
|
|
export const AdminDashboardLayout = (properties: PropsWithChildren) => {
|
|
|
|
|
const { children } = properties
|
|
|
|
|
return (
|
2025-02-23 17:00:17 +08:00
|
|
|
<div className="flex flex-col">
|
2025-02-23 12:18:10 +08:00
|
|
|
<Navbar />
|
2025-02-23 10:22:51 +08:00
|
|
|
<div className="flex">
|
2025-02-23 12:18:10 +08:00
|
|
|
<Sidebar />
|
2025-02-23 17:41:54 +08:00
|
|
|
<div className="min-h-[calc(100dvh-80px)] flex-1 p-8">{children}</div>
|
2025-02-23 10:22:51 +08:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
)
|
|
|
|
|
}
|