adjust faq on pricing page

This commit is contained in:
MarconLP 2023-04-27 21:51:38 +02:00
parent 4471cb0f9f
commit b840be86b0
No known key found for this signature in database
GPG key ID: A08A9C8B623F5EA5

View file

@ -26,7 +26,7 @@ export default function Pricing() {
</span>
</div>
<div className="relative mx-4 mb-20 flex flex-col justify-center gap-12 md:flex-row md:gap-4 lg:mx-16 lg:gap-16">
<div className="relative mx-4 mb-20 flex flex-col items-center justify-center gap-12 md:flex-row md:gap-4 lg:mx-16 lg:gap-16">
<div className="absolute left-[calc(50%_-_calc(min(75vw,500px)_/_2))] h-[min(75vw,500px)] w-[min(75vw,500px)] bg-[radial-gradient(circle_at_center,#666_0,#fff_100%)] opacity-80 blur-[calc(0.5_*_min(75vw,500px))]"></div>
{[
{
@ -68,7 +68,7 @@ export default function Pricing() {
].map(({ name, price, features }) => (
<div
key={name}
className="relative max-w-[400px] flex-1 rounded-3xl border bg-white shadow-sm"
className="relative w-full max-w-[400px] flex-1 rounded-3xl border bg-white shadow-sm"
>
{name === "Pro" ? (
<div className="absolute -top-6 left-2/4 z-[1] mt-0 -translate-x-2/4 cursor-default select-none rounded-3xl border-0 border-solid border-[#eaeaea] bg-[linear-gradient(180deg,rgba(0,0,0,.8),#000)] px-[22px] py-3.5 text-white shadow-[0_8px_30px_rgb(0_0_0/6%)] backdrop-blur-[2px]">
@ -123,22 +123,15 @@ export default function Pricing() {
<div className="flex flex-1 border-collapse flex-col justify-center px-6">
{[
{
question: "What is your refund policy?",
question: "What are my payment options?",
answer:
"If you're unhappy with your purchase for any reason, email us within 90 days and we'll refund you in full, no questions asked.",
"You can be billed monthly, but save 20% if you pay annually. We currently accept credit card payment. Contact us at hello@snapify.it if you need an alternative payment method.",
},
{
question: "Do you offer technical support?",
answer: "No",
},
{
question: "Which payment formats and currencies do you accept?",
question:
"What happens when I hit my 10 video limit on the Free plan?",
answer:
"All payments on our standard plans are via credit card and PayPal.\n" +
"\n" +
"We use Paddle, the leading Merchant of Record for SaaS companies.\n" +
"\n" +
"Contact us if you need an alternative payment method.",
"Our Free plan has a limit of 10 videos. To record more than 10 videos, you will need to delete videos or upgrade to the Pro plan.",
},
].map(({ answer, question }) => (
<Disclosure