aboutsummaryrefslogtreecommitdiffstats
path: root/packages/web/app/dashboard/components/ModileSidebar.tsx
blob: c9a933fab0f605b2b11c07d2bdfb1b274c34dfa5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import MobileSidebarItem from "./ModileSidebarItem";
import { Tag, PackageOpen, Settings, Search } 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={<Tag />} path="/dashboard/tags" />
        <MobileSidebarItem logo={<Settings />} path="/dashboard/settings" />
        <SidebarProfileOptions />
      </ul>
    </aside>
  );
}