Skip to content

Commit d9309a6

Browse files
committed
* Moved the donate buttons higher
1 parent a85fe3a commit d9309a6

File tree

1 file changed

+30
-30
lines changed

1 file changed

+30
-30
lines changed

src/pages/donate/index.jsx

Lines changed: 30 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,36 @@ const Donate = () => {
7373
</CardContent>
7474
</Card>
7575

76+
<Typography variant="h5" color="textPrimary" style={{ marginTop: 20 }}>
77+
<AttachMoneyIcon color="inherit" />
78+
{' '}
79+
Donate
80+
</Typography>
81+
82+
<Grid container spacing={2} style={{ marginTop: 10 }}>
83+
<Grid item xs={12} md={6} lg={6}>
84+
<Button
85+
variant="outlined"
86+
color="primary"
87+
target="_blank"
88+
href="https://paypal.me/codedead"
89+
style={{ width: '100%' }}
90+
>
91+
Donate via PayPal
92+
</Button>
93+
</Grid>
94+
<Grid item xs={12} md={6} lg={6}>
95+
<Button
96+
variant="outlined"
97+
color="primary"
98+
style={{ width: '100%' }}
99+
onClick={() => setBtcOpen(true)}
100+
>
101+
Donate BTC
102+
</Button>
103+
</Grid>
104+
</Grid>
105+
76106
<Typography variant="h5" color="textPrimary" style={{ marginTop: 20 }}>
77107
<AccountBalanceIcon color="inherit" />
78108
{' '}
@@ -125,36 +155,6 @@ const Donate = () => {
125155
ok="OK"
126156
/>
127157
) : null}
128-
129-
<Typography variant="h5" color="textPrimary" style={{ marginTop: 20 }}>
130-
<AttachMoneyIcon color="inherit" />
131-
{' '}
132-
Donate
133-
</Typography>
134-
135-
<Grid container spacing={2} style={{ marginTop: 10 }}>
136-
<Grid item xs={12} md={6} lg={6}>
137-
<Button
138-
variant="outlined"
139-
color="primary"
140-
target="_blank"
141-
href="https://paypal.me/codedead"
142-
style={{ width: '100%' }}
143-
>
144-
Donate via PayPal
145-
</Button>
146-
</Grid>
147-
<Grid item xs={12} md={6} lg={6}>
148-
<Button
149-
variant="outlined"
150-
color="primary"
151-
style={{ width: '100%' }}
152-
onClick={() => setBtcOpen(true)}
153-
>
154-
Donate BTC
155-
</Button>
156-
</Grid>
157-
</Grid>
158158
</Container>
159159
</Layout>
160160
);

0 commit comments

Comments
 (0)