mirror of
https://github.com/blakeblackshear/frigate.git
synced 2024-11-26 19:06:11 +01:00
30 lines
454 B
TypeScript
30 lines
454 B
TypeScript
import { LuConstruction, LuFileUp, LuFlag, LuVideo } from "react-icons/lu";
|
|
|
|
export const navbarLinks = [
|
|
{
|
|
id: 1,
|
|
icon: LuVideo,
|
|
title: "Live",
|
|
url: "/",
|
|
},
|
|
{
|
|
id: 2,
|
|
icon: LuFlag,
|
|
title: "Events",
|
|
url: "/events",
|
|
},
|
|
{
|
|
id: 3,
|
|
icon: LuFileUp,
|
|
title: "Export",
|
|
url: "/export",
|
|
},
|
|
{
|
|
id: 4,
|
|
icon: LuConstruction,
|
|
title: "UI Playground",
|
|
url: "/playground",
|
|
dev: true,
|
|
},
|
|
];
|