Skip to content
This repository was archived by the owner on Mar 7, 2024. It is now read-only.

Commit 04081d4

Browse files
committed
add refund policy in footer
1 parent ffd4352 commit 04081d4

File tree

4 files changed

+53
-0
lines changed

4 files changed

+53
-0
lines changed

src/Routes.js

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,20 @@ const routesConfig = [
4545
}
4646
]
4747
},
48+
{
49+
path: '/refundpolicies',
50+
layout: DocsLayout,
51+
routes: [
52+
{
53+
exact: true,
54+
path: '/refundpolicies',
55+
component: lazy(() => import('src/views/pages/documents/refundView'))
56+
},
57+
{
58+
component: () => <Redirect to="/404" />
59+
}
60+
]
61+
},
4862
{
4963
path: '/campusLeaders',
5064
layout: CLLayout,

src/views/pages/common/Footer.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -227,6 +227,11 @@ function Footer({ className, ...rest }) {
227227
<Link color="inherit" component={RouterLink} to="/terms">
228228
Terms of Use
229229
</Link>
230+
{' | '}
231+
232+
<Link color="inherit" component={RouterLink} to="/refundpolicies">
233+
Refund &amp; Cancellation Policy
234+
</Link>
230235
</Typography>
231236
</Grid>
232237
</Container>
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
## Refund and Cancellation Policy
2+
3+
Our focus is complete customer satisfaction. In the event, if you are displeased with the services provided, we will refund back the money, provided the reasons are genuine and proved after investigation. Please read the fine prints of each deal before buying it, it provides all the details about the services or the product you purchase.
4+
5+
In case of dissatisfaction from our services, clients have the liberty to cancel their projects and request a refund from us. Our Policy for the cancellation and refund will be as follows:
6+
Cancellation Policy.
7+
8+
For Cancellations please contact the us via email to [email protected]
9+
10+
Requests received later than 30 business days prior to the end of the current service period will be treated as cancellation of services for the next service period.
11+
12+
## Refund Policy
13+
14+
We will try our best to create the suitable design concepts for our clients.
15+
16+
In case any client is not completely satisfied with our products we can provide a refund. 
17+
18+
If paid by credit card, refunds will be issued to the original credit card provided at the time of purchase and in case of payment gateway name payments refund will be made to the same account.
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
import React, { lazy, Suspense } from 'react';
2+
import Page from 'src/components/Page';
3+
4+
const Content = lazy(() => import('!babel-loader!mdx-loader!./Content.mdx'));
5+
6+
function privacyView() {
7+
return (
8+
<Page title="Privacy Policy">
9+
<Suspense fallback={null}>
10+
<Content />
11+
</Suspense>
12+
</Page>
13+
);
14+
}
15+
16+
export default privacyView;

0 commit comments

Comments
 (0)