2024-02-28 00:39:05 +03:00
|
|
|
import { navbarLinks } from "@/pages/site-navigation";
|
|
|
|
|
import NavItem from "./NavItem";
|
|
|
|
|
import SettingsNavItems from "../settings/SettingsNavItems";
|
|
|
|
|
|
|
|
|
|
function Bottombar() {
|
|
|
|
|
return (
|
2024-02-28 06:40:57 +03:00
|
|
|
<div className="absolute h-16 inset-x-4 bottom-0 flex flex-row items-center justify-between">
|
2024-02-28 00:39:05 +03:00
|
|
|
{navbarLinks.map((item) => (
|
|
|
|
|
<NavItem
|
|
|
|
|
className=""
|
|
|
|
|
variant="secondary"
|
|
|
|
|
key={item.id}
|
|
|
|
|
Icon={item.icon}
|
|
|
|
|
title={item.title}
|
|
|
|
|
url={item.url}
|
|
|
|
|
dev={item.dev}
|
|
|
|
|
/>
|
|
|
|
|
))}
|
|
|
|
|
<SettingsNavItems className="flex flex-shrink-0 justify-between gap-4" />
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
|
|
|
|
|
|
export default Bottombar;
|