blob: 2016c931d984201457aa09ecdfba3bf0778f261e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
import MobileSidebarItem from "@/components/shared/sidebar/ModileSidebarItem";
import { settingsSidebarItems } from "./items";
export default async function MobileSidebar() {
return (
<aside className="w-full">
<ul className="flex justify-between space-x-2 border-b-black px-5 py-2 pt-5">
{settingsSidebarItems.map((item) => (
<MobileSidebarItem
key={item.name}
logo={item.icon}
path={item.path}
/>
))}
</ul>
</aside>
);
}
|