From 9294f63e84a6047338341d5cb3a7e17af0f8e069 Mon Sep 17 00:00:00 2001 From: Andrei Canta Date: Tue, 7 Mar 2023 18:27:40 +0100 Subject: [PATCH] pricing faq --- src/pages/pricing.tsx | 68 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 68 insertions(+) diff --git a/src/pages/pricing.tsx b/src/pages/pricing.tsx index ae27e40..30f4236 100644 --- a/src/pages/pricing.tsx +++ b/src/pages/pricing.tsx @@ -9,6 +9,7 @@ export default function Page(): JSX.Element { description="Easypanel comes in two editons: developer edition and business edition. The developer edition will always be free." > + ); } @@ -277,3 +278,70 @@ const Pricing = () => { ); }; + +const faqItems = [ + { + question: "What is a licence?", + answer: + "One licence is right to use Easypanel on one server (node, vm, or instance). Right now, each licence is connected to an IP address.", + }, + { + question: "Do you have a refund policy?", + answer: + "Yes, we have a 30-day money-back guarantee. Send us an email at support@easypanel.io.", + }, + { + question: "Do you offer a trial?", + answer: + "Unfortuantely not. Our free plan is very generous and you can get a very good feel of the product just by using that. If you want, just buy a premium plan without worring since we have a 30-day money-back refund policy.", + }, + { + question: "What payment options do you have?", + answer: + "Our payments are processed by Paddle. They support cards (including Mastercard, Visa, Maestro, American Express, Discover, Diners Club, JCB, UnionPay, and Mada), PayPal, and others.", + }, + { + question: "What happens if I cancel my subscription?", + answer: "Don't worry, Easypanel will continue to work on the free plan.", + }, + { + question: "I need more than 10 licences. What do I do?", + answer: + "Send us an email at support@easypanel.io and we'll tailor a plan for you.", + }, +]; + +export function FAQs() { + return ( +
+

+ Frequently asked questions +

+

+ Have a different question and can’t find the answer you’re looking for? + Reach out to our support team by{" "} + + sending us an email + {" "} + and we’ll get back to you as soon as we can. +

+
+
+ {faqItems.map((faq, index) => ( +
+
+ {faq.question} +
+
+ {faq.answer} +
+
+ ))} +
+
+
+ ); +}