-
-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4098 from Giveth/hotfix-2.25.1
Hotfix 2.25.1
- Loading branch information
Showing
26 changed files
with
222 additions
and
98 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
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,46 @@ | ||
import { H5, P, brandColors } from '@giveth/ui-design-system'; | ||
import Link from 'next/link'; | ||
import React from 'react'; | ||
import styled from 'styled-components'; | ||
import Routes from '@/lib/constants/Routes'; | ||
import links from '@/lib/constants/links'; | ||
|
||
export const ManageRecurringDonation = () => { | ||
return ( | ||
<Box> | ||
<Title weight={700}>Managing your recurring donations</Title> | ||
<br /> | ||
<P> | ||
You can modify or delete your recurring donation as well as | ||
top-up funds to your stream balance from the | ||
<Link href={Routes.MyRecurringDonations}> | ||
Recurring Donations page | ||
</Link> | ||
. | ||
</P> | ||
<P> | ||
To learn more about how recurring donations work, visit our{' '} | ||
<a href={links.RECURRING_DONATION_DOCS} target='_blank'> | ||
documentation article | ||
</a> | ||
. | ||
</P> | ||
</Box> | ||
); | ||
}; | ||
|
||
const Title = styled(H5)` | ||
color: ${brandColors.deep[800]}; | ||
`; | ||
|
||
const Box = styled.div` | ||
padding: 16px; | ||
border-radius: 12px; | ||
border: 1px solid ${brandColors.giv[200]}; | ||
a { | ||
color: ${brandColors.pinky[500]}; | ||
&:hover { | ||
color: ${brandColors.pinky[600]}; | ||
} | ||
} | ||
`; |
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
Oops, something went wrong.