blob: 4bd6a347ce5f42bba257c3d335ce23f21bbe654e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
import MobileSidebarItem from "./ModileSidebarItem";
import {
Tag,
PackageOpen,
Settings,
Search,
ClipboardList,
} from "lucide-react";
import SidebarProfileOptions from "./SidebarProfileOptions";
export default async function MobileSidebar() {
return (
<aside className="w-full">
<ul className="flex justify-between space-x-2 border-b-black bg-gray-100 px-5 py-2 pt-5">
<MobileSidebarItem logo={<PackageOpen />} path="/dashboard/bookmarks" />
<MobileSidebarItem logo={<Search />} path="/dashboard/search" />
<MobileSidebarItem logo={<ClipboardList />} path="/dashboard/lists" />
<MobileSidebarItem logo={<Tag />} path="/dashboard/tags" />
<MobileSidebarItem logo={<Settings />} path="/dashboard/settings" />
<SidebarProfileOptions />
</ul>
</aside>
);
}
|