-
Notifications
You must be signed in to change notification settings - Fork 111
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: implement subscription setting
- Loading branch information
Showing
18 changed files
with
381 additions
and
169 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
import Accordion from "@mui/joy/Accordion"; | ||
import AccordionDetails from "@mui/joy/AccordionDetails"; | ||
import AccordionGroup from "@mui/joy/AccordionGroup"; | ||
import AccordionSummary from "@mui/joy/AccordionSummary"; | ||
|
||
const SubscriptionFAQ = () => { | ||
return ( | ||
<div className="w-full flex flex-col justify-center items-center"> | ||
<h2 className="text-2xl font-semibold mb-8 dark:text-gray-400">Frequently Asked Questions</h2> | ||
<AccordionGroup className="w-full max-w-2xl"> | ||
<Accordion> | ||
<AccordionSummary>Can I use the Free plan in my team?</AccordionSummary> | ||
<AccordionDetails> | ||
Of course you can. In the free plan, you can invite up to 5 members to your team. If you need more, you can upgrade to the Pro | ||
plan. | ||
</AccordionDetails> | ||
</Accordion> | ||
<Accordion> | ||
<AccordionSummary>How many devices can the license key be used on?</AccordionSummary> | ||
<AccordionDetails>{`It's unlimited for now, but please don't abuse it.`}</AccordionDetails> | ||
</Accordion> | ||
<Accordion> | ||
<AccordionSummary>{`Can I get a refund if Slash doesn't meet my needs?`}</AccordionSummary> | ||
<AccordionDetails> | ||
Yes, absolutely! You can send a email to me at `stevenlgtm@gmail.com`. I will refund you as soon as possible. | ||
</AccordionDetails> | ||
</Accordion> | ||
</AccordionGroup> | ||
</div> | ||
); | ||
}; | ||
|
||
export default SubscriptionFAQ; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.