mirror of
https://github.com/community-scripts/ProxmoxVE.git
synced 2025-04-19 14:38:07 +00:00
24 lines
650 B
TypeScript
24 lines
650 B
TypeScript
import { MessagesSquare, Scroll } from "lucide-react";
|
|
import { FaGithub } from "react-icons/fa";
|
|
|
|
export const navbarLinks = [
|
|
{
|
|
href: "https://github.com/community-scripts/ProxmoxVE",
|
|
event: "Github",
|
|
icon: <FaGithub className="h-4 w-4" />,
|
|
text: "Github",
|
|
},
|
|
{
|
|
href: "https://github.com/community-scripts/ProxmoxVE/blob/main/CHANGELOG.md",
|
|
event: "Change Log",
|
|
icon: <Scroll className="h-4 w-4" />,
|
|
text: "Change Log",
|
|
},
|
|
{
|
|
href: "https://github.com/community-scripts/ProxmoxVE/discussions",
|
|
event: "Discussions",
|
|
icon: <MessagesSquare className="h-4 w-4" />,
|
|
text: "Discussions",
|
|
},
|
|
];
|