mirror of
https://github.com/stefanpejcic/openpanel
synced 2025-06-26 18:28:26 +00:00
103 lines
2.4 KiB
Plaintext
103 lines
2.4 KiB
Plaintext
import React from "react";
|
|
import { FooterDiscordIcon } from "./icons/footer-discord";
|
|
import { FooterGithubIcon } from "./icons/footer-github";
|
|
import { FooterLinkedinIcon } from "./icons/footer-linkedin";
|
|
import { FooterRedditIcon } from "./icons/footer-reddit";
|
|
import { FooterTwitterIcon } from "./icons/footer-twitter";
|
|
import { NewBadgeIcon } from "./icons/popover";
|
|
|
|
export const menuItems = [
|
|
{
|
|
label: "Resources",
|
|
items: [
|
|
{
|
|
label: "Getting Started",
|
|
href: "/docs/admin/intro/",
|
|
},
|
|
{
|
|
label: "",
|
|
href: "https://community.openpanel.co/",
|
|
},
|
|
{
|
|
label: "Support Forums",
|
|
href: "https://community.openpanel.co/",
|
|
},
|
|
],
|
|
},
|
|
{
|
|
label: "Product",
|
|
items: [
|
|
{
|
|
label: "BETA",
|
|
icon: <NewBadgeIcon />,
|
|
href: "/beta",
|
|
},
|
|
{
|
|
label: "Products",
|
|
href: "/templates",
|
|
},
|
|
{
|
|
label: "Technology Stack",
|
|
href: "/integrations",
|
|
},
|
|
],
|
|
},
|
|
{
|
|
label: "Company",
|
|
items: [
|
|
{
|
|
label: "About",
|
|
href: "/about",
|
|
},
|
|
{
|
|
label: "Become a Partner",
|
|
href: "/partner",
|
|
},
|
|
{
|
|
label: "Contact Us",
|
|
href: "#",
|
|
},
|
|
],
|
|
},
|
|
];
|
|
|
|
export const secondaryMenuItems = [
|
|
{
|
|
label: "Terms & Conditions",
|
|
href: "/terms",
|
|
},
|
|
{
|
|
label: "Privacy Policy",
|
|
href: "/privacy-policy",
|
|
},
|
|
{
|
|
label: "License",
|
|
href: "/LICENSE",
|
|
},
|
|
];
|
|
|
|
export const footerDescription = `OpenPanel - web hosting panel.`;
|
|
|
|
export const socialLinks = [
|
|
{
|
|
icon: FooterGithubIcon,
|
|
href: "https://github.com/stefanpejcic/openpanel",
|
|
},
|
|
{
|
|
icon: FooterDiscordIcon,
|
|
href: "https://discord.gg/",
|
|
},
|
|
{
|
|
icon: FooterRedditIcon,
|
|
href: "https://www.reddit.com/r/open-panel/",
|
|
},
|
|
{
|
|
icon: FooterTwitterIcon,
|
|
href: "https://twitter.com/",
|
|
},
|
|
{
|
|
icon: FooterLinkedinIcon,
|
|
href: "https://www.linkedin.com/company/openpanel/",
|
|
},
|
|
];
|