mirror of
https://github.com/blakeblackshear/frigate.git
synced 2025-10-17 11:16:13 +02:00
* Bump tailwindcss from 3.3.5 to 3.4.1 in /web Bumps [tailwindcss](https://github.com/tailwindlabs/tailwindcss) from 3.3.5 to 3.4.1. - [Release notes](https://github.com/tailwindlabs/tailwindcss/releases) - [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/master/CHANGELOG.md) - [Commits](https://github.com/tailwindlabs/tailwindcss/compare/v3.3.5...v3.4.1) --- updated-dependencies: - dependency-name: tailwindcss dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * Update tailwind css and cleanup --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
27 lines
693 B
TypeScript
27 lines
693 B
TypeScript
import { navbarLinks } from "@/pages/site-navigation";
|
|
import NavItem from "./NavItem";
|
|
import SettingsNavItems from "../settings/SettingsNavItems";
|
|
|
|
function Bottombar() {
|
|
return (
|
|
<div className="absolute h-16 inset-x-4 bottom-0 flex flex-row items-center justify-between">
|
|
{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;
|