2024-03-06 13:24:21 +01:00
|
|
|
import Logo from "@/components/Logo";
|
2024-03-02 16:00:50 +01:00
|
|
|
import { FaCompactDisc, FaFlag, FaVideo } from "react-icons/fa";
|
|
|
|
import { LuConstruction } from "react-icons/lu";
|
2024-02-10 13:30:53 +01:00
|
|
|
|
|
|
|
export const navbarLinks = [
|
2024-02-21 21:07:32 +01:00
|
|
|
{
|
|
|
|
id: 1,
|
2024-03-02 16:00:50 +01:00
|
|
|
icon: FaVideo,
|
2024-02-21 21:07:32 +01:00
|
|
|
title: "Live",
|
|
|
|
url: "/",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: 2,
|
2024-03-02 16:00:50 +01:00
|
|
|
icon: FaFlag,
|
2024-02-21 21:07:32 +01:00
|
|
|
title: "Events",
|
|
|
|
url: "/events",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: 3,
|
2024-03-02 16:00:50 +01:00
|
|
|
icon: FaCompactDisc,
|
2024-02-21 21:07:32 +01:00
|
|
|
title: "Export",
|
|
|
|
url: "/export",
|
|
|
|
},
|
2024-03-06 13:24:21 +01:00
|
|
|
{
|
|
|
|
id: 5,
|
|
|
|
icon: Logo,
|
|
|
|
title: "Frigate+",
|
|
|
|
url: "/plus",
|
|
|
|
},
|
2024-02-21 21:07:32 +01:00
|
|
|
{
|
|
|
|
id: 4,
|
|
|
|
icon: LuConstruction,
|
|
|
|
title: "UI Playground",
|
|
|
|
url: "/playground",
|
|
|
|
dev: true,
|
|
|
|
},
|
|
|
|
];
|