Delete website/src/refine-theme/footer-data.tsx.save

This commit is contained in:
Stefan Pejcic 2024-09-25 15:25:44 +02:00 committed by GitHub
parent e65829953e
commit 8a9e292fe7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,102 +0,0 @@
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/",
},
];