17 lines
641 B
JavaScript
17 lines
641 B
JavaScript
import SidebarItem from '@/Components/SidebarItem'
|
||
|
||
export default function Sidebar() {
|
||
return (
|
||
<div className="flex flex-col w-60 h-full bg-white">
|
||
<div className="p-6 border-b text-2xl">
|
||
<span>پنل مدیریت</span>
|
||
</div>
|
||
<div>
|
||
<SidebarItem title="دشبورد" href="/dashboard" />
|
||
<SidebarItem title="محصولات" href="/products" />
|
||
<SidebarItem title="دسته بندی ها" href="/categories" />
|
||
<SidebarItem title="مشخصه ها" href="/properties" />
|
||
</div>
|
||
</div>
|
||
)
|
||
} |