mirror of
https://github.com/stefanpejcic/openpanel
synced 2025-06-26 18:28:26 +00:00
121 lines
3.8 KiB
TypeScript
121 lines
3.8 KiB
TypeScript
import { NavMenu } from "../types/nav-menu";
|
|
import {
|
|
DocumentsIcon,
|
|
IntegrationsIcon,
|
|
TutorialIcon,
|
|
ExamplesIcon,
|
|
AwesomeIcon,
|
|
ExpertIcon,
|
|
ContributeIcon,
|
|
UseCasesIcon,
|
|
RefineWeekIcon,
|
|
AboutUsIcon,
|
|
RefineStoreIcon,
|
|
RefineIcon,
|
|
} from "./popover-icons";
|
|
|
|
export const POPOVERMENUS: NavMenu[] = [
|
|
{
|
|
label: "Open-source",
|
|
items: [
|
|
{
|
|
label: "Documents",
|
|
description: "Everything you need to get started",
|
|
link: "/docs/",
|
|
icon: DocumentsIcon,
|
|
},
|
|
{
|
|
label: "Integrations",
|
|
description: "Discover the Refine ecosystem",
|
|
link: "/integrations",
|
|
icon: IntegrationsIcon,
|
|
},
|
|
{
|
|
label: "Tutorial",
|
|
description: "Your first Refine application",
|
|
link: "/docs/tutorial/introduction/index/",
|
|
icon: TutorialIcon,
|
|
},
|
|
{
|
|
label: "Templates",
|
|
description: "Ready-made examples for your project",
|
|
link: "/templates",
|
|
icon: ExamplesIcon,
|
|
},
|
|
{
|
|
label: "Awesome Refine",
|
|
description: "Repo of awesome things",
|
|
link: "https://github.com/refinedev/awesome-refine",
|
|
icon: AwesomeIcon,
|
|
},
|
|
],
|
|
imageLink: "https://github.com/refinedev/refine",
|
|
imageURL:
|
|
"https://refine.ams3.cdn.digitaloceanspaces.com/website/static/landing/popovers/open-source.png",
|
|
},
|
|
{
|
|
label: "Community",
|
|
items: [
|
|
{
|
|
label: "Hire an expert",
|
|
description: "Find a trusted partner",
|
|
link: "/become-a-refine-expert",
|
|
icon: ExpertIcon,
|
|
},
|
|
{
|
|
label: "Contributing",
|
|
description: "Join open-source contributors",
|
|
link: "/docs/guides-concepts/contributing/",
|
|
icon: ContributeIcon,
|
|
},
|
|
{
|
|
label: "Use cases",
|
|
description: "Inspiring projects built with Refine",
|
|
link: "/use-cases",
|
|
icon: UseCasesIcon,
|
|
},
|
|
{
|
|
label: "refineweek ft. Supabase",
|
|
description: "The official Refine event",
|
|
link: "/week-of-refine",
|
|
icon: RefineWeekIcon,
|
|
},
|
|
{
|
|
label: "refineweek ft. Strapi",
|
|
description: "The official Refine event",
|
|
link: "/week-of-refine-strapi",
|
|
icon: RefineWeekIcon,
|
|
},
|
|
],
|
|
imageLink: "/examples",
|
|
imageURL:
|
|
"https://refine.ams3.cdn.digitaloceanspaces.com/website/static/landing/popovers/community.png",
|
|
},
|
|
{
|
|
label: "Company",
|
|
items: [
|
|
{
|
|
label: "About Us",
|
|
description: "Team & company information",
|
|
link: "/about",
|
|
icon: AboutUsIcon,
|
|
},
|
|
{
|
|
label: "Swag Store",
|
|
description: "T-shirts, caps, and more",
|
|
link: "https://store.refine.dev",
|
|
icon: RefineStoreIcon,
|
|
},
|
|
{
|
|
label: "Meet Refine",
|
|
description: "Call us for any questions",
|
|
link: "https://refinedev.typeform.com/to/Z9wS06kE",
|
|
icon: RefineIcon,
|
|
},
|
|
],
|
|
imageLink: "https://store.refine.dev",
|
|
imageURL:
|
|
"https://refine.ams3.cdn.digitaloceanspaces.com/website/static/landing/popovers/company.png",
|
|
},
|
|
];
|