mirror of
https://github.com/Radiquum/YAMPD.git
synced 2025-05-20 15:49:34 +05:00
feat: pack creating
This commit is contained in:
parent
5be021789b
commit
af7b8a6fea
27 changed files with 677 additions and 130 deletions
56
gui/app/components/Sidebar.tsx
Normal file
56
gui/app/components/Sidebar.tsx
Normal file
|
@ -0,0 +1,56 @@
|
|||
import {
|
||||
Sidebar,
|
||||
SidebarItem,
|
||||
SidebarItemGroup,
|
||||
SidebarItems,
|
||||
} from "flowbite-react";
|
||||
import {
|
||||
// HiArrowSmRight,
|
||||
HiChartPie,
|
||||
HiPlusCircle
|
||||
// HiInbox,
|
||||
// HiShoppingBag,
|
||||
// HiTable,
|
||||
// HiUser,
|
||||
// HiViewBoards,
|
||||
} from "react-icons/hi";
|
||||
|
||||
export const Menu = () => {
|
||||
return (
|
||||
<Sidebar aria-label="Default sidebar example">
|
||||
<SidebarItems>
|
||||
<SidebarItemGroup>
|
||||
<SidebarItem href="/" icon={HiChartPie}>
|
||||
Dashboard
|
||||
</SidebarItem>
|
||||
<SidebarItem href="/pack/new" icon={HiPlusCircle}>
|
||||
New mod pack
|
||||
</SidebarItem>
|
||||
{/* <SidebarItem
|
||||
href="#"
|
||||
icon={HiViewBoards}
|
||||
label="Pro"
|
||||
labelColor="dark"
|
||||
>
|
||||
Kanban
|
||||
</SidebarItem>
|
||||
<SidebarItem href="#" icon={HiInbox} label="3">
|
||||
Inbox
|
||||
</SidebarItem>
|
||||
<SidebarItem href="#" icon={HiUser}>
|
||||
Users
|
||||
</SidebarItem>
|
||||
<SidebarItem href="#" icon={HiShoppingBag}>
|
||||
Products
|
||||
</SidebarItem>
|
||||
<SidebarItem href="#" icon={HiArrowSmRight}>
|
||||
Sign In
|
||||
</SidebarItem>
|
||||
<SidebarItem href="#" icon={HiTable}>
|
||||
Sign Up
|
||||
</SidebarItem> */}
|
||||
</SidebarItemGroup>
|
||||
</SidebarItems>
|
||||
</Sidebar>
|
||||
);
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue