Init(Core): add to repo and add seeders
This commit is contained in:
17
resources/js/Components/Sidebar.jsx
Normal file
17
resources/js/Components/Sidebar.jsx
Normal file
@@ -0,0 +1,17 @@
|
||||
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>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user