shellphone.app/app/features/public-area/components/faqs.tsx

87 lines
3.0 KiB
TypeScript
Raw Normal View History

2022-05-14 10:22:06 +00:00
import type { FunctionComponent, PropsWithChildren } from "react";
2021-08-28 15:55:23 +00:00
import { Disclosure, Transition } from "@headlessui/react";
import clsx from "clsx";
export default function FAQs() {
return (
<section className="max-w-6xl mx-auto px-4 sm:px-6">
2021-09-03 16:41:02 +00:00
<div className="py-12 md:py-20">
2021-08-28 15:55:23 +00:00
<div className="max-w-3xl mx-auto text-center pb-20">
<h2 className="h2 font-mackinac">Questions & Answers</h2>
</div>
<ul className="max-w-3xl mx-auto pl-12">
2021-08-28 19:34:56 +00:00
<Accordion title="How does it work?">
Shellphone is your go-to app to use your phone number over the internet. It integrates
seamlessly with Twilio to provide the best experience for your personal cloud phone.
2021-08-28 15:55:23 +00:00
</Accordion>
2021-08-29 21:42:09 +00:00
<Accordion title="What do I need to use Shellphone?">
2021-08-28 19:34:56 +00:00
Shellphone is still in its early stages and we&#39;re working hard to make it as easy-to-use as
2021-08-29 21:42:09 +00:00
possible. Currently, you must have a Twilio account to set up your personal cloud phone with
Shellphone.
2021-08-28 15:55:23 +00:00
</Accordion>
2021-08-28 19:34:56 +00:00
<Accordion title="Why would I use this over an eSIM?">
Chances are you&#39;re currently using an eSIM-compatible device. eSIMs are a reasonable way of
using a phone number internationally but they are still subject to some irky limitations. For
example, you can only use an eSIM on one device at a time and you are still subject to
exorbitant rates from your carrier.
2021-08-28 15:55:23 +00:00
</Accordion>
<span className="block border-t border-gray-200" aria-hidden="true" />
</ul>
</div>
</section>
);
}
2022-05-14 10:22:06 +00:00
const Accordion: FunctionComponent<PropsWithChildren<{ title: string }>> = ({ title, children }) => {
2021-08-28 15:55:23 +00:00
return (
<Disclosure>
{({ open }) => (
<>
<Disclosure.Button className="flex items-center w-full text-lg font-medium text-left py-5 border-t border-gray-200">
<svg
className="w-4 h-4 fill-current text-rebeccapurple-500 flex-shrink-0 mr-8 -ml-12"
2021-08-28 15:55:23 +00:00
viewBox="0 0 16 16"
xmlns="http://www.w3.org/2000/svg"
>
<rect
y="7"
width="16"
height="2"
rx="1"
className={clsx("transform origin-center transition duration-200 ease-out", {
"rotate-180": open,
})}
/>
<rect
y="7"
width="16"
height="2"
rx="1"
className={clsx("transform origin-center transition duration-200 ease-out", {
"rotate-90": !open,
"rotate-180": open,
})}
/>
</svg>
<span>{title}</span>
</Disclosure.Button>
<Transition
enter="transition duration-300 ease-in-out"
enterFrom="transform scale-95 opacity-0"
enterTo="transform scale-100 opacity-100"
leave="transition duration-75 ease-out"
leaveFrom="transform scale-100 opacity-100"
leaveTo="transform scale-95 opacity-0"
>
<Disclosure.Panel className="text-gray-600 overflow-hidden">
<p className="pb-5">{children}</p>
</Disclosure.Panel>
</Transition>
</>
)}
</Disclosure>
);
};