mirror of
https://github.com/stefanpejcic/openpanel
synced 2025-06-26 18:28:26 +00:00
Update constants.ts
This commit is contained in:
parent
e5ed6ee0b3
commit
2ca4b20de9
@ -37,7 +37,31 @@ export type MenuItemType = NavbarPopoverItemType | NavbarItemType;
|
|||||||
export const MENU_ITEMS: MenuItemType[] = [
|
export const MENU_ITEMS: MenuItemType[] = [
|
||||||
{
|
{
|
||||||
isPopover: true,
|
isPopover: true,
|
||||||
label: "Resources",
|
label: "Products",
|
||||||
|
items: [
|
||||||
|
{
|
||||||
|
label: "Community Edition",
|
||||||
|
description: "Free web hosting panel for VPS and private use.",
|
||||||
|
link: "/docs",
|
||||||
|
icon: ExamplesIcon,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: "Enterprise Edition",
|
||||||
|
description: "Premium server control panel for shared hosting.",
|
||||||
|
link: "/blog",
|
||||||
|
icon: IntegrationsIcon,
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
isPopover: false,
|
||||||
|
label: "Enterprise",
|
||||||
|
href: "/beta",
|
||||||
|
icon: NewBadgeIcon,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
isPopover: true,
|
||||||
|
label: "Community",
|
||||||
items: [
|
items: [
|
||||||
{
|
{
|
||||||
label: "Documentation",
|
label: "Documentation",
|
||||||
@ -45,71 +69,42 @@ export const MENU_ITEMS: MenuItemType[] = [
|
|||||||
link: "/docs/",
|
link: "/docs/",
|
||||||
icon: DocumentsIcon,
|
icon: DocumentsIcon,
|
||||||
},
|
},
|
||||||
{
|
|
||||||
label: "Live Demo",
|
|
||||||
description: "Give OpenPanel or OpenAdmin a try.",
|
|
||||||
link: "/demo",
|
|
||||||
icon: TutorialIcon,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: "Install Command",
|
|
||||||
description: "Generate command to customize installation.",
|
|
||||||
link: "/install",
|
|
||||||
icon: AwesomeIcon,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: "Integrations",
|
|
||||||
description: "WHMCS, FOSSBilling, Blesta.",
|
|
||||||
link: "/features",
|
|
||||||
icon: IntegrationsIcon,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: "How-to Guides",
|
|
||||||
description: "Most common tasks on OpenPanel.",
|
|
||||||
link: "/docs/articles/intro/",
|
|
||||||
icon: ExamplesIcon,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: "Changelog",
|
|
||||||
description: "Latest version and changes.",
|
|
||||||
link: "/docs/changelog/intro/",
|
|
||||||
icon: BlogIcon,
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
isPopover: false,
|
|
||||||
label: "Live Demo",
|
|
||||||
href: "/demo",
|
|
||||||
icon: NewBadgeIcon,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
isPopover: false,
|
|
||||||
label: "Enterprise",
|
|
||||||
href: "/beta",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
isPopover: true,
|
|
||||||
label: "Support",
|
|
||||||
items: [
|
|
||||||
{
|
{
|
||||||
label: "Forums",
|
label: "Forums",
|
||||||
description: "Join our Community forums!",
|
description: "Join our growing community!",
|
||||||
link: "https://community.openpanel.org/",
|
link: "https://community.openpanel.org/",
|
||||||
icon: AwesomeIcon,
|
icon: ContributeIcon,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: "Discord",
|
label: "Translations",
|
||||||
description: "Join us on Discord.",
|
description: "Help us improve OpenPanel!",
|
||||||
link: "https://discord.openpanel.com",
|
link: "https://github.com/stefanpejcic/openpanel-translations",
|
||||||
icon: ExamplesIcon,
|
icon: HackathonsIcon,
|
||||||
},
|
|
||||||
{
|
|
||||||
label: "Contacy Us",
|
|
||||||
description: "Email us for any questions.",
|
|
||||||
link: "mailto:info@openpanel.com",
|
|
||||||
icon: MeetIcon,
|
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
// {
|
||||||
|
// isPopover: true,
|
||||||
|
// label: "Company",
|
||||||
|
// items: [
|
||||||
|
// {
|
||||||
|
// label: "About Us",
|
||||||
|
// description: "Team & company information.",
|
||||||
|
// link: "/about",
|
||||||
|
// icon: AboutUsIcon,
|
||||||
|
// },
|
||||||
|
// {
|
||||||
|
// label: "Become a Partner",
|
||||||
|
// description: "Help us spread the word!",
|
||||||
|
// link: "mailto:info@openpanel.co",
|
||||||
|
// icon: StoreIcon,
|
||||||
|
// },
|
||||||
|
// {
|
||||||
|
// label: "Meet OpenPanel",
|
||||||
|
// description: "Call us for any questions",
|
||||||
|
// link: "mailto:info@openpanel.co",
|
||||||
|
// icon: MeetIcon,
|
||||||
|
// },
|
||||||
|
// ],
|
||||||
|
// },
|
||||||
];
|
];
|
||||||
|
Loading…
Reference in New Issue
Block a user