Init(Core): add to repo and add seeders

This commit is contained in:
2026-04-28 22:48:42 +03:30
commit be6b699ff0
205 changed files with 22524 additions and 0 deletions

View 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>
)
}