Skip to content

Commit e8a98c3

Browse files
committed
Dependency upgrades and added more donation info
1 parent b7fa8d3 commit e8a98c3

3 files changed

Lines changed: 292 additions & 309 deletions

File tree

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"@emotion/react": "^11.10.4",
1818
"@emotion/styled": "^11.10.4",
1919
"@mui/icons-material": "^5.10.9",
20-
"@mui/material": "^5.10.9",
20+
"@mui/material": "^5.10.10",
2121
"axios": "^1.1.3",
2222
"gatsby": "^4.24.4",
2323
"gatsby-plugin-catch-links": "^4.24.0",
@@ -37,7 +37,7 @@
3737
"react-helmet": "^6.1.0"
3838
},
3939
"devDependencies": {
40-
"eslint": "^8.25.0",
40+
"eslint": "^8.26.0",
4141
"eslint-config-airbnb": "^19.0.4",
4242
"eslint-plugin-import": "^2.26.0",
4343
"eslint-plugin-jsx-a11y": "^6.6.1",

src/pages/donate/index.jsx

Lines changed: 17 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -102,8 +102,7 @@ const Donate = () => {
102102
<Grid item xs={12} md={12} lg={12}>
103103
<Typography variant="h5" color="textPrimary">
104104
<AttachMoneyIcon color="inherit" />
105-
{' '}
106-
Donate
105+
{' Donate'}
107106
</Typography>
108107
</Grid>
109108
<Grid item xs={12} md={12} lg={12}>
@@ -112,23 +111,35 @@ const Donate = () => {
112111
</Grid>
113112

114113
<Grid container spacing={2} style={{ marginTop: 10 }}>
115-
<Grid item xs={12} md={6} lg={6}>
114+
<Grid item xs={12} md={4} lg={4}>
116115
<Button
117116
variant="contained"
118117
color="primary"
119118
target="_blank"
120119
href="https://paypal.me/codedead"
121120
rel="noreferrer"
122-
style={{ width: '100%' }}
121+
fullWidth
123122
>
124123
Donate via PayPal
125124
</Button>
126125
</Grid>
127-
<Grid item xs={12} md={6} lg={6}>
126+
<Grid item xs={12} md={4} lg={4}>
127+
<Button
128+
variant="contained"
129+
color="primary"
130+
fullWidth
131+
target="_blank"
132+
rel="noreferrer"
133+
href="https://github.com/sponsors/CodeDead"
134+
>
135+
GitHub Sponsor
136+
</Button>
137+
</Grid>
138+
<Grid item xs={12} md={4} lg={4}>
128139
<Button
129140
variant="contained"
130141
color="primary"
131-
style={{ width: '100%' }}
142+
fullWidth
132143
onClick={() => setEgldOpen(true)}
133144
>
134145
Donate EGLD

0 commit comments

Comments
 (0)