mirror of
https://github.com/community-scripts/ProxmoxVE.git
synced 2025-09-11 01:44:38 +00:00
* Fix AlertColors info style in site config for consistent dark mode appearance * Enhance alert icon display in Alerts component for improved clarity with new icons * Remove unused icon import in Alerts component to streamline icon usage and improve code clarity
41 lines
No EOL
1.1 KiB
TypeScript
41 lines
No EOL
1.1 KiB
TypeScript
import { MessagesSquare, Scroll } from "lucide-react";
|
|
import { FaGithub } from "react-icons/fa";
|
|
|
|
export const basePath = process.env.BASE_PATH;
|
|
|
|
export const navbarLinks = [
|
|
{
|
|
href: `https://github.com/community-scripts/${basePath}`,
|
|
event: "Github",
|
|
icon: <FaGithub className="h-4 w-4" />,
|
|
text: "Github",
|
|
},
|
|
{
|
|
href: `https://github.com/community-scripts/${basePath}/blob/main/CHANGELOG.md`,
|
|
event: "Change Log",
|
|
icon: <Scroll className="h-4 w-4" />,
|
|
text: "Change Log",
|
|
},
|
|
{
|
|
href: `https://github.com/community-scripts/${basePath}/discussions`,
|
|
event: "Discussions",
|
|
icon: <MessagesSquare className="h-4 w-4" />,
|
|
text: "Discussions",
|
|
},
|
|
];
|
|
|
|
export const mostPopularScripts = [
|
|
"Proxmox VE Post Install",
|
|
"Docker",
|
|
"Home Assistant OS",
|
|
];
|
|
|
|
export const analytics = {
|
|
url: "analytics.proxmoxve-scripts.com",
|
|
token: "b60d3032-1a11-4244-a100-81d26c5c49a7",
|
|
};
|
|
|
|
export const AlertColors = {
|
|
warning: "border-red-500/25 bg-destructive/25",
|
|
info: "border-cyan-500/25 bg-cyan-50 dark:border-cyan-900 dark:bg-cyan-900/25",
|
|
}; |