mirror of
https://github.com/blakeblackshear/frigate.git
synced 2024-11-21 19:07:46 +01:00
55077a0bc9
* Add screen for submitting to frigate+ * Fix sizing
38 lines
612 B
TypeScript
38 lines
612 B
TypeScript
import Logo from "@/components/Logo";
|
|
import { FaCompactDisc, FaFlag, FaVideo } from "react-icons/fa";
|
|
import { LuConstruction } from "react-icons/lu";
|
|
|
|
export const navbarLinks = [
|
|
{
|
|
id: 1,
|
|
icon: FaVideo,
|
|
title: "Live",
|
|
url: "/",
|
|
},
|
|
{
|
|
id: 2,
|
|
icon: FaFlag,
|
|
title: "Events",
|
|
url: "/events",
|
|
},
|
|
{
|
|
id: 3,
|
|
icon: FaCompactDisc,
|
|
title: "Export",
|
|
url: "/export",
|
|
},
|
|
{
|
|
id: 5,
|
|
icon: Logo,
|
|
title: "Frigate+",
|
|
url: "/plus",
|
|
},
|
|
{
|
|
id: 4,
|
|
icon: LuConstruction,
|
|
title: "UI Playground",
|
|
url: "/playground",
|
|
dev: true,
|
|
},
|
|
];
|