mirror of
https://github.com/blakeblackshear/frigate.git
synced 2024-11-21 19:07:46 +01:00
34 lines
526 B
TypeScript
34 lines
526 B
TypeScript
|
import {
|
||
|
LuConstruction,
|
||
|
LuFileUp,
|
||
|
LuFilm,
|
||
|
LuVideo,
|
||
|
} from "react-icons/lu";
|
||
|
|
||
|
export const navbarLinks = [
|
||
|
{
|
||
|
id: 1,
|
||
|
icon: LuVideo,
|
||
|
title: "Live",
|
||
|
url: "/",
|
||
|
},
|
||
|
{
|
||
|
id: 2,
|
||
|
icon: LuFilm,
|
||
|
title: "History",
|
||
|
url: "/history",
|
||
|
},
|
||
|
{
|
||
|
id: 3,
|
||
|
icon: LuFileUp,
|
||
|
title: "Export",
|
||
|
url: "/export",
|
||
|
},
|
||
|
{
|
||
|
id: 4,
|
||
|
icon: LuConstruction,
|
||
|
title: "UI Playground",
|
||
|
url: "/playground",
|
||
|
dev: true,
|
||
|
},
|
||
|
];
|