Update constants.ts

This commit is contained in:
Stefan Pejcic 2025-05-15 19:09:12 +02:00 committed by GitHub
parent 2ca4b20de9
commit 0dc55826af
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -37,19 +37,25 @@ export type MenuItemType = NavbarPopoverItemType | NavbarItemType;
export const MENU_ITEMS: MenuItemType[] = [ export const MENU_ITEMS: MenuItemType[] = [
{ {
isPopover: true, isPopover: true,
label: "Products", label: "Resources",
items: [ items: [
{ {
label: "Community Edition", label: "How-to Guides",
description: "Free web hosting panel for VPS and private use.", description: "Everything you need to get started.",
link: "/docs", link: "/docs/articles/intro/",
icon: ExamplesIcon, icon: ExamplesIcon,
}, },
{ {
label: "Enterprise Edition", label: "Install Command",
description: "Premium server control panel for shared hosting.", description: "Customize installation.",
link: "/blog", link: "https://community.openpanel.org/",
icon: IntegrationsIcon, icon: AwesomeIcon,
},
{
label: "Changelog",
description: "Latest version and updates.",
link: "/docs/changelog/intro/",
icon: BlogIcon,
}, },
], ],
}, },
@ -57,6 +63,11 @@ export const MENU_ITEMS: MenuItemType[] = [
isPopover: false, isPopover: false,
label: "Enterprise", label: "Enterprise",
href: "/beta", href: "/beta",
},
{
isPopover: false,
label: "Live Demo",
href: "/demo",
icon: NewBadgeIcon, icon: NewBadgeIcon,
}, },
{ {