-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: create cancelation & refund policy pages
- Loading branch information
1 parent
07575cd
commit 9c1f079
Showing
2 changed files
with
71 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
import React from "react"; | ||
import Head from "next/head"; | ||
import { Anchor, Container, List, Paper, Stack, Text, Title } from "@mantine/core"; | ||
import Layout from "src/layout/Layout"; | ||
|
||
const SubscriptionRefund = () => { | ||
return ( | ||
<Layout> | ||
<Head> | ||
<title>Subscription & Refund - JSON Crack</title> | ||
</Head> | ||
<Container my={50} size="sm"> | ||
<Paper bg="transparent"> | ||
<Title>Subscription & Refund</Title> | ||
<Stack my="lg"> | ||
<Text> | ||
This document delineates the Subscription Cancellation and Refund Policy for users of | ||
jsoncrack.com (the “Site”). It provides guidance on the cancellation process. For | ||
inquiries or assistance related to cancellations, users are encouraged to contact the | ||
customer support team at{" "} | ||
<Anchor href="mailto:[email protected]">[email protected]</Anchor>. | ||
</Text> | ||
<Title order={3}>Cancellation Policy</Title> | ||
<Text> | ||
You have the right to cancel your subscription at any time. When you cancel, your | ||
subscription will remain active until the end of the current billing period. You will | ||
not be billed for any subsequent periods. | ||
</Text> | ||
<Title order={4}>How to Cancel:</Title> | ||
<Text> | ||
To cancel your subscription, follow these steps: | ||
<List type="ordered" my="lg"> | ||
<List.Item>Log in to your account.</List.Item> | ||
<List.Item> | ||
Click on your account name located at the bottom left of the editor. | ||
</List.Item> | ||
<List.Item>Select the "Unsubscribe" option.</List.Item> | ||
</List> | ||
Please note that subscription cancellations made after the initial 3-day period are | ||
not eligible for a refund. However, you will still have access to the service until | ||
the end of the current billing period. | ||
</Text> | ||
<Title order={3}>Refund Policy</Title> | ||
<Text> | ||
If you cancel your subscription within 3 days of the initial purchase, you are | ||
eligible for a full refund. Refunds will be issued to the original payment method used | ||
during the purchase. For refund inquiries or assistance, please contact our customer | ||
support team at{" "} | ||
<Anchor href="mailto:[email protected]">[email protected]</Anchor>. | ||
</Text> | ||
<Title order={3}>Changes to this Policy</Title> | ||
<Text> | ||
We reserve the right to modify this subscription cancellation and refund policy at any | ||
time. Any changes will be effective immediately upon posting the updated policy on our | ||
website. It is your responsibility to review this policy periodically for changes. By | ||
subscribing to our service, you agree to abide by the terms and conditions outlined in | ||
this cancellation and refund policy. Thank you for choosing our service. We appreciate | ||
the opportunity to address any concerns and improve your experience. | ||
</Text> | ||
</Stack> | ||
</Paper> | ||
</Container> | ||
</Layout> | ||
); | ||
}; | ||
|
||
export default SubscriptionRefund; |