This repository has been archived by the owner on Mar 7, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 78
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- Loading branch information
1 parent
a58ad73
commit e6f640a
Showing
8 changed files
with
3,486 additions
and
7,713 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
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
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 |
---|---|---|
@@ -1,9 +1,9 @@ | ||
import { makeStyles, Typography, Link } from '@material-ui/core'; | ||
import React from 'react'; | ||
import CustomButton from '../../../components/Button/ButtonComponent' | ||
import CustomButton from '../../../components/Button/ButtonComponent'; | ||
|
||
const useStyles = makeStyles((theme) => ({ | ||
root: { | ||
const useStyles = makeStyles(theme => ({ | ||
root: { | ||
backgroundColor: theme.palette.background.default, | ||
marginTop: '30vh', | ||
textAlign: 'center', | ||
|
@@ -21,18 +21,22 @@ export default function Success() { | |
if (true) { | ||
return ( | ||
<div className={classes.root}> | ||
<Typography align="center">Your last payment to codeforcause was Failed. You can retry the payment from the course website.</Typography> | ||
<Typography align="center">Connect with us at {` `} | ||
<Link | ||
href="mailto:[email protected]" | ||
>[email protected]</Link> | ||
<Typography align="center"> | ||
Your last payment to codeforcause was Failed. You can retry the | ||
payment from the course website. | ||
</Typography> | ||
<Typography align="center"> | ||
Connect with us at {` `} | ||
<Link href="mailto:[email protected]">[email protected]</Link> | ||
{` `}or{` `} | ||
<Link | ||
href="tel:+919810468685" | ||
>+91 98104 68685</Link> | ||
|
||
{` `} in case of any help.</Typography> | ||
<CustomButton className={classes.button} title="Go Back To Homepage" href="/" /> | ||
<Link href="tel:+919810468685">+91 98104 68685</Link> | ||
{` `} in case of any help. | ||
</Typography> | ||
<CustomButton | ||
className={classes.button} | ||
title="Go Back To Homepage" | ||
href="/" | ||
/> | ||
</div> | ||
); | ||
} | ||
|
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 |
---|---|---|
@@ -1,8 +1,8 @@ | ||
import { makeStyles, Typography, Link } from '@material-ui/core'; | ||
import React from 'react'; | ||
import CustomButton from '../../../components/Button/ButtonComponent' | ||
import CustomButton from '../../../components/Button/ButtonComponent'; | ||
|
||
const useStyles = makeStyles((theme) => ({ | ||
const useStyles = makeStyles(theme => ({ | ||
root: { | ||
backgroundColor: theme.palette.background.default, | ||
marginTop: '30vh', | ||
|
@@ -21,20 +21,23 @@ export default function Success() { | |
if (true) { | ||
return ( | ||
<div className={classes.root}> | ||
<Typography align="center">Your last payment to codeforcause was successful. We will connect to you within 24 hours with more details and | ||
you'll receive an email from us as well. | ||
<Typography align="center"> | ||
Your last payment to codeforcause was successful. We will connect to | ||
you within 24 hours with more details and you'll receive an email from | ||
us as well. | ||
</Typography> | ||
<Typography align="center">Connect with us at {` `} | ||
<Link | ||
href="mailto:[email protected]" | ||
>[email protected]</Link> | ||
<Typography align="center"> | ||
Connect with us at {` `} | ||
<Link href="mailto:[email protected]">[email protected]</Link> | ||
{` `}or{` `} | ||
<Link | ||
href="tel:+919810468685" | ||
>+91 98104 68685</Link> | ||
|
||
{` `} in case of any doubt.</Typography> | ||
<CustomButton className={classes.button} title="Go Back To Homepage" href="/" /> | ||
<Link href="tel:+919810468685">+91 98104 68685</Link> | ||
{` `} in case of any doubt. | ||
</Typography> | ||
<CustomButton | ||
className={classes.button} | ||
title="Go Back To Homepage" | ||
href="/" | ||
/> | ||
</div> | ||
); | ||
} | ||
|