blob: 74cbacba61209c817b4c236b85e15082a9e02b87 (
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 { Archive, Star, Tag, PackageOpen, Settings } 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={<Star />}
path="/dashboard/bookmarks/favourites"
/>
<MobileSidebarItem
logo={<Archive />}
path="/dashboard/bookmarks/archive"
/>
<MobileSidebarItem logo={<Tag />} path="/dashboard/tags" />
<MobileSidebarItem logo={<Settings />} path="/dashboard/settings" />
<SidebarProfileOptions />
</ul>
</aside>
);
}
|