import React from "react";
import clsx from "clsx";
import { Disclosure, Transition } from "@headlessui/react";
import { CommonCircleChevronDown } from "./common-circle-chevron-down";
export const EnterpriseFaq = ({ className }: { className?: string }) => {
return (
Frequently Asked Questions
{faq.map((item, index) => {
const isLast = index === faq.length - 1;
return (
{({ open }) => (
<>
{item.question}
{item.answer}
{!isLast && (
)}
>
)}
);
})}
);
};
const faq = [
{
question: "How does the pricing work for the Enterprise edition?",
answer: "The pricing model is based on the number of end users.",
},
{
question:
"Are there any limitations regarding the number of user accounts I can create?",
answer: "Yes, the Community license allows you to create up to 3 user accounts, and Enterprise edition has no limit to the number of user accounts that you can create.",
},
{
question:
"Is it possible to upgrade from the Community edition to Enterprise edition?",
answer: "Yes, at any time you can upgrade your license from Commuunity to Enterprise edition and all limits will imediately be lifted, and additional features added.",
},
{
question: "How often does Enterprise edition receive updates?",
answer: "We aim to introduce new features and fixes in a continuous delivery manner, sometimes as frequently as daily updates. On the other hand, the community edition receives updates on a monthly basis.",
},
{
question:
"Do you provide custom development services for turnkey projects?",
answer: "No, we do not offer any type of turnkey development services.",
},
{
question: "What is the scope of the professional services you provide?",
answer: "Our professional services cover collaborative tasks with internal teams such as onboarding assistance, trainings and customizing your OpenPanel instance to match your brand.",
},
{
question: "Can I request specific features or customizations?",
answer: "We prioritize feature requests on the product roadmap and also support teams in developing custom integrations and components.",
},
];