Files

17 lines
641 B
JavaScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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>
)
}